Class JavaAgent.resource.Language
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class JavaAgent.resource.Language

java.lang.Object
   |
   +----JavaAgent.resource.Language

public class Language
extends Object
Abstract class which defines the syntax of a finite length string passed between Agents in a message. This string represents a non-proper subset of the total message. (Thus, it could be the entire message or only a portion of the message). Each subclass of Language must have a constructor which takes a String as input and parses the string to construct the Message object.


Copyright (c) 1995, H. Robert Frost, Stanford University. All rights reserved.

Copyright (c) 1996, H. Robert Frost, Enterprise Integration Technologies, Inc. All rights reserved.

RESTRICTED RIGHTS LEGEND: Use, duplication or disclosure by the Government is subject to restrictions as set forth in subparagraph(c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 and in similar clauses in the FAR and NASA FAR supplement.

This software is bound by the terms and conditions listed in the attached LICENSE file.



Constructor Index

 o Language()
Creates an empty Language instance.
 o Language(String)
Creates a Language instance by parsing the input String.

Method Index

 o parseString(String)
Takes an empty Language instance and populates it by parsing an input string.

Constructors

 o Language
  public Language()
Creates an empty Language instance.
 o Language
  public Language(String input)
Creates a Language instance by parsing the input String.
Parameters:
input - The string to be parsed.

Methods

 o parseString
  public void parseString(String input)
Takes an empty Language instance and populates it by parsing an input string.
Parameters:
input - The string to be parsed.

All Packages  Class Hierarchy  This Package  Previous  Next  Index