Package org.cfcc.colfile

Examples of org.cfcc.colfile.ListColumn


    public Person(UniSession s) {
        super(s, "PERSON");
        pref_addr = new StringColumn(this, 6);
        ssn = new StringColumn(this, 8);
        birth_date = new StringColumn(this, 14, "D4/");
        where_used = new ListColumn(this, 31);
        last_name = new StringColumn(this, 1);
        first_name = new StringColumn(this, 3);
    }
View Full Code Here


     * Constructor to bind to an open session and initialze the field variables.
     * @param session a current UniObjects session
     */
    public Staff(UniSession session) {
        super(session, "STAFF");
        office_code = new ListColumn(this, 6);
    }
View Full Code Here

TOP

Related Classes of org.cfcc.colfile.ListColumn

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.