Examples of Property


Examples of de.xanders.data.system.dao.Property

    /**
     * @see PropertyService#getPropertyById(java.lang.Long)
     */
    protected PropertyVO handleGetPropertyById(Long propertyId)
        throws java.lang.Exception {
      Property property = this.getPropertyDao().load(propertyId);
      return this.getPropertyDao().toPropertyVO(property);
    }
View Full Code Here

Examples of easyJ.system.data.Property

    // 用来显示调整字段的界面
    public void adjustProperty() throws EasyJException {
        UserPropertyRight userPropertyRight = new UserPropertyRight();
        userPropertyRight.setUserId(userId);
        userPropertyRight.setClassName(className);
        Property property = new Property();
        BeanUtil.transferObject(userPropertyRight, property, true, false);
        // 用来指示当前显示的是查询的字段,还是显示的字段,还是编辑的字段。
        String propertyType = request.getParameter("propertyType");
        if (GenericValidator.isBlankOrNull(propertyType))
            propertyType = "whetherDisplay";
View Full Code Here

Examples of edu.cmu.cs.stage3.alice.core.Property

    Class elementOverrideValueClass = null;
    String propertyNameValue = propertyName.getStringValue();
    if( propertyNameValue!=null ) {
      Element elementValue = element.getElementValue();
      if( elementValue!=null ) {
        Property property = elementValue.getPropertyNamed( propertyNameValue );
        if( property != null ) {
          elementOverrideValueClass = property.getDeclaredClass();
        } else {
          if( elementValue instanceof Expression ) {
            Class cls = ((Expression)elementValue).getValueClass();
            if( cls != null ) {
              elementOverrideValueClass = cls;
View Full Code Here

Examples of edu.harvard.hul.ois.jhove.Property

    }

    String value = buf.toString();

    Property p = new Property(keyword,
                  PropertyType.STRING,
                  value);
    repInfo.setProperty(p);
    Booolean bol = (Booolean)keywordList.get(keyword);
View Full Code Here

Examples of edu.hawaii.ics.csdl.jupiter.file.property.Property

   * @param reader The reader used to read in the file.
   * @return Returns a <code>Property</code> representing the data in the file.
   * @throws XMLStreamException Thrown if there is an error reading the file.
   */
  public static Property parsePropertyFile(XMLStreamReader reader) throws XMLStreamException {
    Property property = null;
    Review review = null;

    int eventType = reader.getEventType();
    while (reader.hasNext()) {
      eventType = reader.next();

      if (eventType == XMLStreamConstants.START_ELEMENT) {
        QName elementQName = reader.getName();
        String elementName = elementQName.toString();

        if (PropertyConstraints.ELEMENT_PROPERTY.equals(elementName)) {
          // create a new property object, this is the root element
          property = new Property();
        }
        else if (PropertyConstraints.ELEMENT_REVIEW.equals(elementName)) {
          // create a new review and add it to the property object
          review = new Review();
          property.getReview().add(review);

          // get the attributes of review
          String id = reader.getAttributeValue(null, PropertyConstraints.ATTRIBUTE_ID);
          review.setId(id);
        }
View Full Code Here

Examples of edu.indiana.extreme.xbaya.streaming.StreamServiceStub.Property

    try {
      if (xpathSplits.length == propertySplits.length
          && propertySplits.length == typeSplit.length) {
        Property[] xpathProperties = new Property[xpathSplits.length];
        for (int i = 0; i < xpathSplits.length; ++i) {
          Property prop = new Property();
          prop.setXpath(xpathSplits[i]);
          prop.setProprtyName(propertySplits[i]);
          prop.setType(typeSplit[i]);

          xpathProperties[i] = prop;
        }
        if (this.checkBox.isSelected()) {
          StreamServiceStub stub = new StreamServiceStub(
View Full Code Here

Examples of eu.planets_project.services.datatypes.Property

     * {@inheritDoc}
     * @see eu.planets_project.services.characterise.Characterise#listProperties(java.net.URI)
     */
    public List<Property> listProperties(URI format) {
        List<Property> props = new ArrayList<Property>();
        props.add( new Property( makePropertyURI(MIME_PROP_URI), MIME_PROP_URI, null) );
        return props;
    }
View Full Code Here

Examples of fiftyone.mobile.detection.entities.Property

public class PropertyFactory extends BaseEntityFactory<Property> {

    @Override
    public Property create(Dataset dataSet, int index,
            BinaryReader reader) throws IOException {
        return new Property(dataSet, index, reader);
    }
View Full Code Here

Examples of fj.test.Property

    // bzzt!
    return i == i;
  }

  public static void main(final String[] args) {
    final Property p = property(arbInteger, new F<Integer, Property>() {
      public Property f(final Integer a) {
        return prop(isPositive(a) == (a != 0 && !isNegative(a)));
      }
    });
    summary.println(p.check()); // Falsified after 0 passed tests with argument: 0
  }
View Full Code Here

Examples of flex2.compiler.mxml.reflect.Property

     
      if ((destination != null) && (destinationProperty != null && destinationStyle == null) &&
            !isArrayAccess() && !((isDestinationXMLAttribute || isDestinationXMLNode)))
      {
        Type type = destination.getType();
        Property property = type.getProperty(destinationProperty);
       
        if (property != null && !property.hasPublic())
          result = true;
      }
     
      return result;
    }
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.