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
24
25
package org.litesoft.language.model;

import org.litesoft.core.annotations.*;
import org.litesoft.core.typeutils.*;

public class MasterUnvalidatedEntry extends Key
{
    public MasterUnvalidatedEntry( @NotEmpty String pKey, @NotEmpty String pValue )
    {
        super( pKey );
        mValue = Strings.assertNotNullNotEmpty( "Value", pValue );
    }

    public @NotEmpty String getValue()
    {
        return mValue;
    }

    private /* final */ String mValue;

    @Deprecated /** for Serialization */
    protected MasterUnvalidatedEntry()
    {
    }
}

Commits for litesoft/trunk/DeviceDesktopTest/src/org/litesoft/language/model/MasterUnvalidatedEntry.java

Diff revisions: vs.
Revision Author Commited Message
936 GeorgeS picture GeorgeS Sun 01 Jun, 2014 20:19:38 +0000

Language Support