Uses of Class
net.sf.morph.lang.LanguageException

Packages that use LanguageException
net.sf.morph Core classes for use by other parts of the Morph framework. 
net.sf.morph.lang Defines basic Languages used to retrieve and set information in bean-like objects. 
net.sf.morph.lang.languages Language implementations. 
 

Uses of LanguageException in net.sf.morph
 

Methods in net.sf.morph that throw LanguageException
static java.lang.Object Morph.get(java.lang.Object target, java.lang.String expression)
          Retrieve the property indicated by expression from target.
static java.lang.Object Morph.get(java.lang.Object target, java.lang.String expression, java.lang.Class destinationClass)
          Retrieve the information indicated by expression from target as the type indicated by destinationClass.
static java.lang.Object Morph.get(java.lang.Object target, java.lang.String expression, java.lang.Class destinationClass, java.util.Locale locale)
          Retrieve the information indicated by expression from target as the type indicated by destinationClass.
static java.lang.Object Morph.get(java.lang.Object target, java.lang.String expression, java.util.Locale locale, java.lang.Class destinationClass)
          Retrieve the information indicated by expression from target as the type indicated by destinationClass.
static void Morph.set(java.lang.Object target, java.lang.String expression, java.lang.Object value)
          Sets the information indicated by expression on target.
static void Morph.set(java.lang.Object target, java.lang.String expression, java.lang.Object value, java.util.Locale locale)
          Sets the information indicated by expression on target.
 

Uses of LanguageException in net.sf.morph.lang
 

Subclasses of LanguageException in net.sf.morph.lang
 class InvalidExpressionException
          Indicates an invalid expression was detected.
 

Methods in net.sf.morph.lang that throw LanguageException
 java.lang.Object Language.get(java.lang.Object target, java.lang.String expression)
          Retrieve the property indicated by expression from target.
 java.lang.Object DecoratedLanguage.get(java.lang.Object target, java.lang.String expression, java.lang.Class destinationClass)
          Retrieve the information indicated by expression from target as the type indicated by destinationClass.
 java.lang.Object DecoratedLanguage.get(java.lang.Object target, java.lang.String expression, java.lang.Class destinationClass, java.util.Locale locale)
          Retrieve the information indicated by expression from target as the type indicated by destinationClass.
 java.lang.Object DecoratedLanguage.get(java.lang.Object target, java.lang.String expression, java.util.Locale locale, java.lang.Class destinationClass)
          Deprecated. why would we need both signatures (Object, String, Locale, Class) and (Object, String, Class, Locale)?
 java.lang.Class Language.getType(java.lang.Object target, java.lang.String expression)
          Specifies the least restrictive type that may be assigned to property indicated by the given expression.
 boolean Language.isProperty(java.lang.String expression)
          Indicates whether the given expression refers to a direct property of a target object.
 void Language.set(java.lang.Object target, java.lang.String expression, java.lang.Object value)
          Sets the property indicated by expression on target.
 void DecoratedLanguage.set(java.lang.Object target, java.lang.String expression, java.lang.Object value)
          Sets the information indicated by expression on target.value will be automatically converted to a type appropriate for the given expression.
 void DecoratedLanguage.set(java.lang.Object target, java.lang.String expression, java.lang.Object value, java.util.Locale locale)
          Sets the information indicated by expression on target.value will be automatically converted to a type appropriate for the given expression.
 

Uses of LanguageException in net.sf.morph.lang.languages
 

Methods in net.sf.morph.lang.languages that throw LanguageException
 java.lang.Object BaseLanguage.get(java.lang.Object target, java.lang.String expression)
          Retrieve the property indicated by expression from target.
 java.lang.Object BaseLanguage.get(java.lang.Object target, java.lang.String expression, java.lang.Class destinationClass)
          Retrieve the information indicated by expression from target as the type indicated by destinationClass.
 java.lang.Object BaseLanguage.get(java.lang.Object target, java.lang.String expression, java.lang.Class destinationClass, java.util.Locale locale)
          Retrieve the information indicated by expression from target as the type indicated by destinationClass.
 java.lang.Object BaseLanguage.get(java.lang.Object target, java.lang.String expression, java.util.Locale locale, java.lang.Class destinationClass)
          Retrieve the information indicated by expression from target as the type indicated by destinationClass.
protected  java.lang.Object LanguageDecorator.getImpl(java.lang.Object target, java.lang.String expression)
          Implement get(target, expression).
 java.lang.Class BaseLanguage.getType(java.lang.Object target, java.lang.String expression)
          Specifies the least restrictive type that may be assigned to property indicated by the given expression.
protected  java.lang.Class LanguageDecorator.getTypeImpl(java.lang.Object target, java.lang.String expression)
          Implement getType(target, expression).
 boolean BaseLanguage.isProperty(java.lang.String expression)
          Indicates whether the given expression refers to a direct property of a target object.
 void BaseLanguage.set(java.lang.Object target, java.lang.String expression, java.lang.Object value)
          Sets the information indicated by expression on target.value will be automatically converted to a type appropriate for the given expression.
 void BaseLanguage.set(java.lang.Object target, java.lang.String expression, java.lang.Object value, java.util.Locale locale)
          Sets the information indicated by expression on target.value will be automatically converted to a type appropriate for the given expression.
 



Copyright © 2004-2008.