Package org.eclipse.wst.html.core.internal.contentmodel

Examples of org.eclipse.wst.html.core.internal.contentmodel.HTMLPropertyDeclaration


      node = ((CMNodeWrapper)node).getOriginNode();
    }
   
    //determine if is valid
    if(node instanceof HTMLPropertyDeclaration) {
      HTMLPropertyDeclaration propDec = (HTMLPropertyDeclaration)node;
      isValid = propDec.isJSP();
    } else if(node.supports(TLDElementDeclaration.IS_LIBRARY_TAG)){
      Boolean isLibraryTag = (Boolean)node.getProperty(TLDElementDeclaration.IS_LIBRARY_TAG);
      isValid = isLibraryTag != null && isLibraryTag.booleanValue();
    }
   
View Full Code Here


      node = ((CMNodeWrapper)node).getOriginNode();
    }
   
    //determine if is valid
    if(node instanceof HTMLPropertyDeclaration) {
      HTMLPropertyDeclaration propDec = (HTMLPropertyDeclaration)node;
      isValid = propDec.isJSP();
    } else if(node.supports(TLDElementDeclaration.IS_LIBRARY_TAG)){
      Boolean isLibraryTag = (Boolean)node.getProperty(TLDElementDeclaration.IS_LIBRARY_TAG);
      isValid = isLibraryTag != null && isLibraryTag.booleanValue();
    }
   
View Full Code Here

TOP

Related Classes of org.eclipse.wst.html.core.internal.contentmodel.HTMLPropertyDeclaration

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.