Examples of Name


Examples of net.sourceforge.htmlunit.corejs.javascript.ast.Name

    public static Node newString(String str) {
        return newString(Token.STRING, str);
    }

    public static Node newString(int type, String str) {
        Name name = new Name();
        name.setIdentifier(str);
        name.setType(type);
        return name;
    }
View Full Code Here

Examples of oms3.annotations.Name

            sb.append("</blockquote>");
            sb.append(NEWLINE);
        }

        // general info: script name
        Name name = moduleClass.getAnnotation(Name.class);
        String nameStr = AnnotationUtilities.getLocalizedName(name);
        if (name != null) {
            sb.append("<blockquote>");
            sb.append(" Name to use in a script: <b>" + nameStr + "</b>").append(NEWLINE);
            sb.append("</blockquote>");
View Full Code Here

Examples of org.any_openeai_enterprise.moa.objects.resources.v1_0.Name

    try {
      InstitutionalIdentity instIdent = (InstitutionalIdentity)getAppConfig()
        .getObject("InstitutionalIdentity");
      UnknownPerson uPerson = (UnknownPerson)getAppConfig()
        .getObject("UnknownPerson");  
      Name aName = (Name)getAppConfig().getObject("Name");
    }
    catch (EnterpriseConfigurationObjectException eoce) {
      // An error occurred retrieving a required object from AppConfig. Log it
      // and throw an exception.
      String errMsg = "An error occurred retrieving a required object from " +
View Full Code Here

Examples of org.apache.airavata.schemas.gfac.ExportProperties.Name

          String[] exports = StringUtil.getElementsFromString(exportsTextField.getText());
          ExportProperties exportsElement = ((GsisshHostType)hostDescription.getType()).addNewExports();
          for (String export : exports) {
            String[] nameVal = StringUtil.getElementsFromString(export,"=",StringUtil.QUOTE);
            if (nameVal.length>0){
                Name name = exportsElement.addNewName();
              name.setStringValue(nameVal[0]);
              if (nameVal.length>1){
                name.setValue(nameVal[1]);
              }
            }
      }
            ((GsisshHostType)hostDescription.getType()).setPreJobCommandsArray(StringUtil.getElementsFromString(this.preJobCommandsTextField.getText()));
            ((GsisshHostType)hostDescription.getType()).setPostJobCommandsArray(StringUtil.getElementsFromString(this.postJobCommandsTextField.getText()));
View Full Code Here

Examples of org.apache.axis.types.Name

                    new PositiveInteger("12345678901234567890"), true);
    }

    public void testName() throws Exception {
        deserialize("<result xsi:type=\"xsd:Name\">:Braves</result>",
                    new Name(":Braves"),true);
    }
View Full Code Here

Examples of org.apache.axis2.databinding.types.Name

    }

    public static String convertToName(Object jsObject) throws AxisFault {
        try {
            String str = (String) jsObject;
            return new Name(str).toString();
        } catch (IllegalArgumentException e) {
            throw new AxisFault("Unable to convert the return value to name");
        }
    }
View Full Code Here

Examples of org.apache.directory.api.ldap.aci.UserClass.Name

        Set<Dn> dnSetD = new HashSet<Dn>();
        dnSetD.add( new Dn( "b=bb" ) );
        dnSetD.add( new Dn( "c=cc" ) );

        nameA = new Name( dnSetA );
        nameACopy = new Name( dnSetB );
        nameB = new Name( dnSetC );
        nameC = new Name( dnSetD );
    }
View Full Code Here

Examples of org.apache.directory.shared.ldap.aci.UserClass.Name

        Set<Dn> dnSetD = new HashSet<Dn>();
        dnSetD.add( new Dn( "b=bb" ) );
        dnSetD.add( new Dn( "c=cc" ) );

        nameA = new Name( dnSetA );
        nameACopy = new Name( dnSetB );
        nameB = new Name( dnSetC );
        nameC = new Name( dnSetD );
    }
View Full Code Here

Examples of org.apache.etch.compiler.ast.Name

   * @return the Name with ID token.
   */
  protected Name newName( String name )
  {
    Token t = newId( name );
    return new Name( t, name );
  }
View Full Code Here

Examples of org.apache.flex.abc.semantics.Name

        }
        else
        {
            il.addInstruction(ABCConstants.OP_getproperty, getNameForTag(tag));
            int index = getIndexOfTag(tag);
            il.addInstruction(ABCConstants.OP_getproperty, new Name(String.valueOf(index)));
        }
    }
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.