Examples of ClassList


Examples of org.apache.syncope.common.annotation.ClassList

                fieldWrapper.setType(field.getType());

                final SchemaList schemaList = field.getAnnotation(SchemaList.class);
                fieldWrapper.setSchemaList(schemaList);

                final ClassList classList = field.getAnnotation(ClassList.class);
                fieldWrapper.setClassList(classList);

                items.add(fieldWrapper);
            }
        }
View Full Code Here

Examples of org.apache.syncope.common.annotation.ClassList

                fieldWrapper.setType(field.getType());

                final SchemaList schemaList = field.getAnnotation(SchemaList.class);
                fieldWrapper.setSchemaList(schemaList);

                final ClassList classList = field.getAnnotation(ClassList.class);
                fieldWrapper.setClassList(classList);

                items.add(fieldWrapper);
            }
        }
View Full Code Here

Examples of org.overturetool.vdmj.definitions.ClassList

        {
          FileInputStream fis = new FileInputStream(file);
          GZIPInputStream gis = new GZIPInputStream(fis);
          ObjectInputStream ois = new ObjectInputStream(gis);

          ClassList loaded = null;
          long begin = System.currentTimeMillis();

          try
          {
            loaded = (ClassList) ois.readObject();
          } catch (Exception e)
          {
            println(file + " is not a valid VDM++ library");
            perrs++;
            continue;
          } finally
          {
            ois.close();
          }

          long end = System.currentTimeMillis();
          loaded.setLoaded();
          classes.addAll(loaded);
          classes.remap();

          infoln("Loaded " + plural(loaded.size(), "class", "es")
              + " from " + file + " in " + (double) (end - begin)
              / 1000 + " secs");
        } else
        {
          if (replaceNewIdentifier.isEmpty()
View Full Code Here

Examples of org.xvr.s3D.classList

   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetParents(classList newParents, NotificationChain msgs)
  {
    classList oldParents = parents;
    parents = newParents;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, S3DPackage.OPT_BODY_CLASS__PARENTS, oldParents, newParents);
      if (msgs == null) msgs = notification; else msgs.add(notification);
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.