Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.gui4j.dflt
Class UserInformation  view UserInformation download UserInformation.java

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.gui4j.dflt.UserInformation
All Implemented Interfaces:
java.io.Serializable

public class UserInformation
extends java.lang.RuntimeException

Kann verwendet werden um in der Applikation den Programmablaug zu unterbrechen um den Benutzer über ein Problem zu informieren. Wird insbesondere von Gui4j verwendet für die Validierung von Eingabewerten.


Nested Class Summary
 
Nested classes inherited from class java.lang.Throwable
 
Field Summary
private  java.lang.Object[] informationArgs
           
private  java.lang.String informationTag
           
 
Fields inherited from class java.lang.RuntimeException
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
UserInformation(java.lang.String informationTag)
           
UserInformation(java.lang.String informationTag, java.lang.Object[] informationArgs)
          Constructor for UserInformation.
UserInformation(java.lang.String informationTag, java.lang.Object[] informationArgs, java.lang.Throwable cause)
           
 
Method Summary
 java.lang.Object[] getInformationArgs()
           
 java.lang.String getInformationMessage(org.gui4j.util.Translator translator)
          Liefert den übersetzten Text zurück
 java.lang.String getInformationTag()
           
 java.lang.String toString()
          Get a human-readable representation of this Throwable.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

informationTag

private final java.lang.String informationTag

informationArgs

private final java.lang.Object[] informationArgs
Constructor Detail

UserInformation

public UserInformation(java.lang.String informationTag,
                       java.lang.Object[] informationArgs)
Constructor for UserInformation.


UserInformation

public UserInformation(java.lang.String informationTag)

UserInformation

public UserInformation(java.lang.String informationTag,
                       java.lang.Object[] informationArgs,
                       java.lang.Throwable cause)
Method Detail

getInformationMessage

public java.lang.String getInformationMessage(org.gui4j.util.Translator translator)
Liefert den übersetzten Text zurück


getInformationArgs

public java.lang.Object[] getInformationArgs()

getInformationTag

public java.lang.String getInformationTag()

toString

public java.lang.String toString()
Description copied from class: java.lang.Throwable
Get a human-readable representation of this Throwable. The detail message is retrieved by getLocalizedMessage(). Then, with a null detail message, this string is simply the object's class name; otherwise the string is getClass().getName() + ": " + message.