Package nexj.core.meta.ui

Examples of nexj.core.meta.ui.ClassMeta


       */
      private Object readResolve() throws ObjectStreamException
      {
         try
         {
            ClassMeta classMeta = Repository.getMetadata().getClassMeta(m_sClassName);

            return classMeta.getAttributeMeta(m_sAttribName);
         }
         catch (Exception e)
         {
            throw new InvalidObjectException(e.getMessage());
         }
View Full Code Here


   /**
    * @see nexj.core.meta.ui.ClassMeta#getDerivedClassMeta(java.lang.String)
    */
   public final ClassMeta getDerivedClassMeta(String sName)
   {
      ClassMeta derived = findDerivedClassMeta(sName);

      if (derived == null)
      {
         throw new MetadataLookupException("err.meta.derivedClassLookup", sName, this);
      }
View Full Code Here

TOP

Related Classes of nexj.core.meta.ui.ClassMeta

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.