Package gap.data

Examples of gap.data.Kind


    }
    public ListPrimitiveKey clone(){
        return (ListPrimitiveKey)super.clone();
    }
    public Kind getKind(){
        Kind kind = this.kind;
        if (null == kind){
            kind = Kind.For(this.kindName);
            this.kind = kind;
        }
        return kind;
View Full Code Here



        public Component(String term){
            super();
            this.term = term;
            Kind kind = Kind.ForPath(term);
            if (null != kind){
                this.identifier = false;
                this.kind = kind;
            }
            else {
View Full Code Here

TOP

Related Classes of gap.data.Kind

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.