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
26
27
28
29
package com.example.mockapp.client.mockdata;

import java.util.*;

import org.litesoft.bo.*;

public class MockBoMetaData implements BoMetaData
{
    public MockBoMetaData( BoAttribute[] pAttributes )
    {
        // todo: To change body of created methods use File | Settings | File Templates.
    }

    @Override public String[] getAttributeNames()
    {
        return new String[0];  // todo: To change body of implemented methods use File | Settings | File Templates.
    }

    @Override public BoAttribute[] getBoAttributes()
    {
        return new BoAttribute[0];  // todo: To change body of implemented methods use File | Settings | File Templates.
    }

    @Override public BoAttribute getBoAttribute( String pAttributeName )
            throws NoSuchElementException
    {
        return null;  // todo: To change body of implemented methods use File | Settings | File Templates.
    }
}

Commits for litesoft/trunk/GWT_Sandbox/MockApp/src/com/example/mockapp/client/mockdata/MockBoMetaData.java

Diff revisions: vs.
Revision Author Commited Message
162 GeorgeS picture GeorgeS Fri 01 Apr, 2011 19:58:40 +0000