Examples of Definition


Examples of at.bestsolution.efxclipse.tooling.css.cssext.cssExtDsl.Definition

   * <!-- end-user-doc -->
   * @generated
   */
  public void setRef(Definition newRef)
  {
    Definition oldRef = ref;
    ref = newRef;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, CssExtDslPackage.CSS_RULE_REF__REF, oldRef, ref));
  }
View Full Code Here

Examples of com.cedarsoft.unit.Definition

    return new ArrayList<Class<? extends Annotation>>( Arrays.asList( derived.value() ) );
  }

  @Nonnull
  public static List<? extends String> getDefinitions( @Nonnull Class<? extends Annotation> unitType ) {
    Definition definition = unitType.getAnnotation( Definition.class );
    if ( definition == null ) {
      throw new IllegalArgumentException( "No definition found for " + unitType );
    }

    return new ArrayList<String>( Arrays.asList( definition.value() ) );
  }
View Full Code Here

Examples of com.datastax.driver.core.ColumnDefinitions.Definition

        @Override
        public Object getObject(Map<String, Definition> mapDefinition,
                FieldInformation field, Row row) {

            Definition column = mapDefinition.get(field.getName().toLowerCase());
            ByteBuffer buffer = (ByteBuffer) RelationShipJavaCassandra.INSTANCE
                    .getObject(row, column.getType().getName(),
                            column.getName());
            CustomData customData = field.getField().getAnnotation(CustomData.class);
            Customizable customizable = Customizable.class
                    .cast(ReflectionUtil.INSTANCE.newInstance(customData
                            .classCustmo()));
View Full Code Here

Examples of com.google.javascript.jscomp.DefinitionsRemover.Definition

   */
  private static class DefinitionsGatherer extends AbstractPostOrderCallback {
    final List<Definition> definitions = Lists.newArrayList();
    @Override
    public void visit(NodeTraversal t, Node n, Node parent) {
      Definition def = DefinitionsRemover.getDefinition(n, false);
      if (def != null) {
        definitions.add(def);
      }
    }
View Full Code Here

Examples of com.google.javascript.jscomp.MustBeReachingVariableDef.Definition

            String name = n.getString();
            if (compiler.getCodingConvention().isExported(name)) {
              return;
            }

            Definition def = reachingDef.getDef(name, cfgNode);
            // TODO(nicksantos): We need to add some notion of @const outer
            // scope vars. We can inline those just fine.
            if (def != null &&
                !reachingDef.dependsOnOuterScopeVars(def)) {
              candidates.add(new Candidate(name, def, n, cfgNode));
View Full Code Here

Examples of com.puppetlabs.geppetto.pp.Definition

        if(result == null)
          result = defaultCase(theEObject);
        return result;
      }
      case PPPackage.DEFINITION: {
        Definition definition = (Definition) theEObject;
        T result = caseDefinition(definition);
        if(result == null)
          result = caseExpression(definition);
        if(result == null)
          result = defaultCase(theEObject);
View Full Code Here

Examples of com.puppycrawl.tools.checkstyle.checks.usage.transmogrify.Definition

     * @return an iterator for the references to aAST.
     */
    private Iterator getReferences(DetailAST aAST)
    {
        final SymTabAST ident = getASTManager().get(aAST);
        final Definition definition =
            (Definition) ident.getDefinition();
        if (definition != null) {
            return definition.getReferences();
        }
        final Set dummy = new HashSet();
        return dummy.iterator();
    }
View Full Code Here

Examples of com.sun.jdo.spi.persistence.support.sqlstore.query.util.scope.Definition

   
    // get base name
    int index = name.lastIndexOf('.');
    String identName = index>0 ? name.substring(index+1) : name;
   
    Definition old = typeNames.declare(identName, new TypeName(type, name));
    if (old != null)
    {
    errorMsg.error(i_AST.getLine(), i_AST.getColumn(),
    I18NHelper.getMessage(messages, "jqlc.semantic.generic.alreadydeclared", //NOI18N
    identName, old.getName()));
    }
   
    declareImport_AST = (JQLAST)currentAST.root;
    returnAST = declareImport_AST;
    _retTree = _t;
View Full Code Here

Examples of edu.pitt.dbmi.nlp.noble.terminology.Definition

   */
  private Definition [] getDefinitions(){
    String [] com = getComments();
    Definition [] d = new Definition[com.length];
    for(int i=0;i<d.length;i++)
      d[i] = new Definition(com[i]);
    return d;
  }
View Full Code Here

Examples of edu.pitt.terminology.lexicon.Definition

        if(fields.length >= 5 ){
          String cui = fields[0].trim();
          String src = fields[4].trim();
          String text = fields[5].trim();
         
          Definition d = Definition.getDefinition(text);
          d.setSource(Source.getSource(src));
         
          // get concept from map
          Concept c = convertConcept(conceptMap.get(cui));
          if(c != null){
            c.addDefinition(d);
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.