Uses of Interface
org.eclipse.higgins.idas.IPropertyValue

Packages that use IPropertyValue
org.eclipse.higgins.idas Defines the core set of interfaces for IdAS. 
org.eclipse.higgins.idas.impl This package provides some basic implementations of various IdAS interfaces for use by context providers. 
 

Uses of IPropertyValue in org.eclipse.higgins.idas
 

Subinterfaces of IPropertyValue in org.eclipse.higgins.idas
 interface IComplexValue
           
 interface ISimpleValue
           
 

Methods in org.eclipse.higgins.idas that return IPropertyValue
 IPropertyValue IProperty.getValue()
          Returns a single value for this iProperty.
 

Methods in org.eclipse.higgins.idas that return types with arguments of type IPropertyValue
 Iterable<IPropertyValue> IProperty.getValues()
          Returns all values for this iProperty.
 

Methods in org.eclipse.higgins.idas with parameters of type IPropertyValue
 IAttribute IHasAttributes.createAttribute(URI type, IPropertyValue value)
          Creates and adds an attribute for this object.
 IMetadata IHasMetadata.createMetadata(URI type, IPropertyValue value)
          Creates a metadata item which can be added to metadata held by this Object.
 void IProperty.setValue(IPropertyValue value)
           
 

Method parameters in org.eclipse.higgins.idas with type arguments of type IPropertyValue
 IAttribute IHasAttributes.createAttribute(URI type, Iterable<IPropertyValue> values)
          Creates and adds an attribute for this object.
 

Uses of IPropertyValue in org.eclipse.higgins.idas.impl
 

Classes in org.eclipse.higgins.idas.impl that implement IPropertyValue
 class AbstractComplexValue
          Basic implementation of IComplexValue.
 class AbstractSimpleValue
           
 class BasicValueBase64Binary
          Currently uses sun.misc.BASE64Encoder which is not officially supported.
 class BasicValueBoolean
           
 class BasicValueByte
           
 class BasicValueDate
           
 class BasicValueDateTime
           
 class BasicValueDay
           
 class BasicValueDecimal
           
 class BasicValueDouble
          TODO: make sure getCanonical() meets the canonical rules for xsd:float.
 class BasicValueFloat
          TODO: make sure getCanonical() meets the canonical rules for xsd:float.
 class BasicValueHexBinary
           
 class BasicValueInt
           
 class BasicValueInteger
          TODO: make sure getCanonical() meets the canonical rules for xsd:integer.
 class BasicValueLanguage
          TODO: This does not enforce xsd:language restrictions yet.
 class BasicValueLong
           
 class BasicValueMonth
           
 class BasicValueMonthDay
           
 class BasicValueName
           
 class BasicValueNCName
          TODO: This does not enforce xsd:NCName restrictions yet.
 class BasicValueNegativeInteger
           
 class BasicValueNMTOKEN
          TODO: This does not enforce xsd:NMTOKEN restrictions yet.
 class BasicValueNonNegativeInteger
           
 class BasicValueNonPositiveInteger
           
 class BasicValueNormalizedString
           
 class BasicValuePositiveInteger
           
 class BasicValueShort
           
 class BasicValueString
           
 class BasicValueTime
           
 class BasicValueToken
           
 class BasicValueUnsignedByte
           
 class BasicValueUnsignedInt
           
 class BasicValueUnsignedLong
           
 class BasicValueUnsignedShort
           
 class BasicValueURI
           
 class BasicValueYear
           
 class BasicValueYearMonth
           
 

Methods in org.eclipse.higgins.idas.impl that return IPropertyValue
 IPropertyValue BasicProperty.getValue()
           
 IPropertyValue BasicAttribute.getValue()
           
 

Methods in org.eclipse.higgins.idas.impl that return types with arguments of type IPropertyValue
 Iterable<IPropertyValue> BasicProperty.getValues()
           
 Iterable<IPropertyValue> BasicAttribute.getValues()
           
 

Methods in org.eclipse.higgins.idas.impl with parameters of type IPropertyValue
 IAttribute BasicAttributeSet.createAttribute(URI type, IPropertyValue value)
           
 IMetadata BasicMetadataSet.createMetadata(URI type, IPropertyValue value)
           
 IMetadata BasicAttribute.createMetadata(URI type, IPropertyValue value)
           
 void BasicProperty.setValue(IPropertyValue value)
           
 void BasicAttribute.setValue(IPropertyValue value)
           
 

Method parameters in org.eclipse.higgins.idas.impl with type arguments of type IPropertyValue
 IAttribute BasicAttributeSet.createAttribute(URI type, Iterable<IPropertyValue> values)
           
 

Constructors in org.eclipse.higgins.idas.impl with parameters of type IPropertyValue
BasicAttribute(URI type, IPropertyValue value)
           
BasicAttribute(URI type, IPropertyValue value, HashSet<IMetadata> metadataSet)
           
BasicMetadata(URI type, IPropertyValue value)
           
BasicProperty(URI type, IPropertyValue value)
           
 

Constructor parameters in org.eclipse.higgins.idas.impl with type arguments of type IPropertyValue
BasicAttribute(URI type, Iterable<IPropertyValue> values)
           
BasicAttribute(URI type, Vector<IPropertyValue> values)
           
BasicAttribute(URI type, Vector<IPropertyValue> values, HashSet<IMetadata> metadataSet)
           
BasicProperty(URI type, Iterable<IPropertyValue> values)
           
BasicProperty(URI type, Vector<IPropertyValue> values)
           
 



Copyright © 2006 Novell Inc. All Rights Reserved.
This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html

Contributors:
  Jim Sermersheim (Novell, Inc.) - initial API and implementation