Package com.sun.enterprise.management.support

Examples of com.sun.enterprise.management.support.TypeInfo


    protected void
  implCheck()
  {
    final boolean  isContainer  = isContainer();
    final String  j2eeType  = getSelfJ2EEType();
    final TypeInfo  selfInfo  = TypeInfos.getInstance().getInfo( j2eeType );
   
    final Set<String>  nonChildren  = selfInfo.getNonChildJ2EETypes();
    final Set<String>  children  = selfInfo.getChildJ2EETypes();
   
    if ( isContainer )
    {
      assert( nonChildren.size() != 0 || children.size() != 0 ) :
        "ERROR: is Container but contains no children or containees " + j2eeType;
View Full Code Here


 
    public Set<ObjectName>
  getContaineeObjectNameSet( final String childJ2EEType )
  {
    final TypeInfos  infos  = TypeInfos.getInstance();
    final TypeInfo  info  = infos.getInfo( childJ2EEType );
   
    String  props  = Util.makeJ2EETypeProp( childJ2EEType );
   
    QueryExp expr  = null;
    if ( info.isSubType() )
    {
      final String  selfFullType  = getFullType();
      final String  childFullType  = makeType( selfFullType, childJ2EEType );
     
      final String  selfProps  = Util.getFullTypeProps( getObjectName(), getFullType() );
View Full Code Here

TOP

Related Classes of com.sun.enterprise.management.support.TypeInfo

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.