Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.litesoft.sandbox.csapp.client.dtos;

import java.util.*;

public final class Response1 implements Response {
    private List<String> mFilters;

    protected Response1() {
    }

    public Response1( String... pFilters ) {
        mFilters = Arrays.asList( pFilters );
    }

    public List<String> getFilters() {
        return mFilters;
    }

    @Override
    public String toString() {
        return mFilters.toString();
    }
}

Commits for litesoft/trunk/GWT_Sandbox/CS_IDEA/src/org/litesoft/sandbox/csapp/client/dtos/Response1.java

Diff revisions: vs.
Revision Author Commited Message
948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

589 GeorgeS picture GeorgeS Wed 18 Jan, 2012 19:16:02 +0000

Unchecked & FE