source: java/main/src/main/java/com/framsticks/params/types/ListParam.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
File size: 427 bytes
Line 
1package com.framsticks.params.types;
2
3import com.framsticks.params.CompositeParam;
4import com.framsticks.params.ParamBuilder;
5
6import javax.annotation.concurrent.Immutable;
7
8/**
9 * @author Piotr Sniegowski
10 */
11@Immutable
12public abstract class ListParam extends CompositeParam {
13
14        public ListParam(ParamBuilder builder) {
15                super(builder);
16        }
17
18        // @Override
19        // public <T> String serialize(T value) {
20        //      return null;
21        // }
22
23}
Note: See TracBrowser for help on using the repository browser.