Examples of AnnotationCollection


Examples of com.antlersoft.bbq.db.AnnotationCollection

    methods=new TreeMap<String,ObjectRef<DBMethod>>();
    fields=new TreeMap<String,ObjectRef<DBField>>();
    resolved=false;
    deprecated=false;
    _persistentImpl=new PersistentImpl();
    annotations=new AnnotationCollection();
    lineNumber= -1;
    name=TypeParse.convertFromInternalClassName( internalName);
    ObjectDB.makePersistent( this);
    if ( internalName.charAt(0)!='[')
    {
View Full Code Here

Examples of com.antlersoft.bbq.db.AnnotationCollection

    DBMember( String name, DBClass containingClass, DBType type)
    {
      this.name=name;
      this.dbclass=new ObjectRef<DBClass>( containingClass);
      this.dbtype = new ObjectRef<DBType>( type);
      annotationCollection=new AnnotationCollection();
    }
View Full Code Here

Examples of com.antlersoft.bbq.db.AnnotationCollection

  {
    _dbmethod=new ObjectRef( method);
    _ordinal=ordinal;
    _dbtype=new ObjectRef( type);
    _name="";
    _annotationCollection=new AnnotationCollection();
    ObjectDB.makePersistent( this);
  }
View Full Code Here

Examples of com.antlersoft.bbq.db.AnnotationCollection

    DBPackage namespace= DBPackage.get( DBPackage.namespacePart(m_class_key), db);
    m_namespace=new ObjectRef<DBPackage>(namespace);
    m_base=new ObjectKeyHashSet<DBClass>();
    m_fields=new TreeMap<String,ObjectRef<DBField>>();
    m_methods=new TreeMap<String,ObjectRef<DBMethod>>();
    m_annotations=new AnnotationCollection();
   
    ObjectDB.makePersistent( this);
    namespace.setContainedClass( this);
    // Assume class is public unless we get concrete evidence otherwise
    m_properties=DBDriver.IS_PUBLIC;
View Full Code Here

Examples of com.antlersoft.bbq.db.AnnotationCollection

    m_class=new ObjectRef<DBClass>( container);
    m_name=name;
    m_type=new ObjectRef<DBType>( type);
    // Public until shown otherwise
    m_properties=DBDriver.IS_PUBLIC;
    m_annotations = new AnnotationCollection();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.