> Inhalt: JavaScout Base-System (JSBS)

JSBS_XML_Constants – Interface für Return-Codes beim Verarbeiten einer XML-Struktur

* Bitte beachten Sie die Hinweise und Bestimmungen bezüglich Urheberrecht, Haftungsausschluß und geschützte Marken oder Warenzeichen die für dieses Web-Dokument und möglicherweise auch für 'verlinkte' Dokumente gelten.

  • Der Betreiber dieser Web-Site (www.javascout.biz) ist nicht verantwortlich für den Inhalt von Web-Sites, die innerhalb dieses Web-Dokumentes oder anderer Dokumente von www.javascout.biz verlinkt sind.

  • Wenn dieses Web-Dokument oder andere Dokumente dieser Web-Site (www.javascout.biz) Rechte von Ihnen verletzen, oder sie glauben, daß Rechte Anderer (Dritter Personen) dadurch verletzt werden, informieren Sie bitte den Betreiber dieser Web-Site.
    Eine E-Mail können Sie ganz einfach durch anklicken des Symbols oder Textes im Frame rechts oben senden.

Dieses Dokument drucken.

 Letzte Bearbeitung dieses  Dokuments:
2008-02-01

Inhaltsverzeichnis

Code 
Erklärungen und Anwendungsbeispiele 
Verwandte Dokumentation
 

Code

package js_base.xml;
/**
 *
 * @author kurt@javascout.biz
 * @date 2006-05-18
 *
 * @description
 * Constant values for the class JSBS_XML_Base and classes derived from it.
 * For a detailed description please see at the individual value.
 *
 * @change-log
 * when         who               why
 * --------------------------------------------------------
 *
 */

public interface JSBS_XML_Constants {
/*
 * Control-values
 * --------------
 * Control-values are introduced to control the flow of the code. */
/*
 * Values reflecting the subdirectory-names where parameters are stored. */
/*
 *
 * Status-code
 * -----------
 * Values that are returned from methods or stored in the 'StatusCode' value of the class.
 * Status-codes are introduced to signal a calling method if the construction of the class
 * or a method of the class ended error-free (CONST_OK)
 * or encountered an error - and which kind of error happened.
 */

    
public static int CONST_OK = 0;
/*
 * FILE_EMPTY: Read successfull but file contains no data */
    public static int CONST_FILE_EMPTY = 1;
/*
 * NOT_WELL_FORMED: Content of the file violates XML-syntax */
    public static int CONST_NOT_WELL_FORMED = 2;
/*
 * Stati concerning <Frame> properties within the XML-structure. */
/*
 * FRAMEINDIVIDUAL_DIVISION_NOT_PRESENT:
 * There is no <FrameIndividual> division as a direct child of the root-element. */
    public static int CONST_FRAMEINDIVIDUAL_DIVISION_NOT_PRESENT = 11;
/*
 * FRAMECLASS_NOT_PRESENT:
 * A <Frame> with the searched <FrameClassName> is not present within the XML-structure. */
    public static int CONST_FRAMECLASS_NOT_PRESENT = 12;
/*
 * FRAMETITLE_NOT_PRESENT:
 * The property <FrameTitle> is not present for the searched <FrameClassName>. */
    public static int CONST_FRAMETITLE_NOT_PRESENT = 13;
/*
 * Stati concerning <Frame> properties within the XML-structure. */
/*
 * GUI_ELEMENT_NOT_PRESENT:
 * There is not even one <Element> present as a child of a <Frame>.
 * This can not be as every <Frame> has a GUI-<Element>. */
    public static int CONST_GUI_ELEMENT_NOT_PRESENT = 21;
/*
 * Stati concerning <CommonElement> properties within the XML-structure. */
/*
 * GUI_ELEMENT_COMMON_NOT_PRESENT:
 * There was a reference found to a common GUI-ELEMENT
 * but there is no such element within the XML-structure. */
    public static int CONST_GUI_ELEMENT_COMMON_NOT_PRESENT = 31;
/*
 * COMMONELEMENTS_DIVISION_NOT_PRESENT:
 * There is no <CommonElements> division as a direct child of the root-element. */
    public static int CONST_COMMONELEMENTS_DIVISION_NOT_PRESENT = 32;
/*
 * Stati concerning <SupplementaryText> properties within the XML-structure. */
/*
 * SUPPLEMENTARYTEXT_DIVISION_NOT_PRESENT:
 * There is no <SupplementaryText> division as a direct child of the root-element. */
    public static int CONST_SUPPLEMENTARYTEXT_DIVISION_NOT_PRESENT = 41;
/*
 * SUPPLEMENTARYTEXT_ELEMENT_NOT_PRESENT:
 * A <Element> with the searched <ElementName> is not present within the
 * <SupplementaryText> Division of the XML-structure or it has no <MessageText>. */
    public static int CONST_SUPPLEMENTARYTEXT_ELEMENT_NOT_PRESENT = 42;
/*
 * Stati concerning XML-structure for Tasks. */
/*
 * NO_TASK_ELEMENT_PRESENT:
 * The set of sub-elements for one <Task> is incomplete. */
    public static int CONST_NO_TASK_ELEMENT_PRESENT = 51;
/*
 * LAYOUT_DIVISION_NOT_PRESENT:
 * There is no <Layout> division as a direct child of the root-element. */
    public static int CONST_LAYOUT_DIVISION_NOT_PRESENT = 61;
/*    */
/*
 * UNKNOWN_ERROR: Something went wrong but exact reason is unknown */
    public static int CONST_UNKNOWN_ERROR = 999;
}

zum Inhaltsverzeichnis

Erklärungen und Anwendungsbeispiele

xxx

zum Inhaltsverzeichnis

Verwandte Dokumentation

Dokument

Inhalt

Leitfaden für die Entwicklung von Heavyweight-Clients mit dem JS-FCF – Notwendige Schritte zur Entwicklung des StartFrames  

Dieser Leitfaden enthält die notwendigen Tätigkeiten für die Entwicklung eines StartFrame (auch als Command-Center bekannt).
Das StartFrame stellt die Möglichkeiten bereit, verschiedene TaskFrames für die Bearbeitung von Geschäftsfällen aufzurufen.
Weiters ist im StartFrame jener Programm-Code enthalten, der die Verbindung zum Datenbanksystem bzw. zum Java-Application-Server (JAS) herstellt.

zum Inhaltsverzeichnis