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

Quick Search    Search Deep

Page 1   2  
com.memoire.xmas.* (17)com.memoire.xml.* (5)com.memoire.yapod.* (64)

Package Samples:

com.memoire.xml
com.memoire.xmas.test
com.memoire.xmas.basic
com.memoire.xmas
com.memoire.yapod

Classes:

RE: RE provides the user interface for compiling and matching regular expressions. A regular expression object (class RE) is compiled by constructing it from a String, StringBuffer or character array, with optional compilation flags (below) and an optional syntax specification (see RESyntax; if not specified, RESyntax.RE_SYNTAX_PERL5 is used). Various methods attempt to match input text against a compiled regular expression. These methods are: isMatch : returns true if the input text in its entirety matches the regular expression pattern. getMatch : returns the first match found in the input text, ...
REMatchEnumeration: An REMatchEnumeration enumerates regular expression matches over a given input text. You obtain a reference to an enumeration using the getMatchEnumeration() methods on an instance of RE. REMatchEnumeration does lazy computation; that is, it will not search for a match until it needs to. If you'd rather just get all the matches at once in a big array, use the getAllMatches() methods on RE. However, using an enumeration can help speed performance when the entire text does not need to be searched immediately. The enumerated type is especially useful when searching on an InputStream, because the InputStream ...
MstXmlParser: Parse XML documents and return parse events through call-backs. You need to define a class implementing the MstXmlHandler interface: an object belonging to this class will receive the callbacks for the events. (As an alternative to implementing the full MstXmlHandler interface, you can simply extend the MstHandlerBase convenience class.) Usage (assuming that MyHandler is your implementation of the MstXmlHandler interface): MstXmlHandler handler = new MyHandler(); MstXmlParser parser = new MstXmlParser(); parser.setHandler(handler); try { parser.parse("http://www.host.com/doc.xml", null); } catch ...
MstHandlerBase: Convenience base class for AElfred handlers. This base class implements the MstXmlHandler interface with (mostly empty) default handlers. You are not required to use this, but if you need to handle only a few events, you might find it convenient to extend this class rather than implementing the entire interface. This example overrides only the charData method, using the defaults for the others: public class MyHandler extends MstHandlerBase { public void charData (char ch[], int start, int length) { System.out.println("Data: " + new String (ch, start, length)); } } This class is optional, but if ...
MstXmlHandler: XML Processing Interface. Whenever you parse an XML document, you must provide an object from a class that implements this interface to receive the parsing events. If you do not want to implement this entire interface, you can extend the MstHandlerBase convenience class and then implement only what you need. If you are using SAX, you should implement the SAX handler interfaces rather than this one.
SilkSchemePrimitives: Holds a string representation of some SilkScheme code in CODE . A string is better than a file because with no files, its easier to compress everything in the classes.jar file. For editing convenience, the following two perl convert from normal text to this Java quoted format and back again: perl -pe 's/"/\\"/g; s/(\s*)(.*?)(\s*)$/\1"\2\\n" +\n/' perl -pe 's/\\"/"/g; s/^(\s*)"/\1/; s/\\n" [+]//'
MstXmlException: Convenience exception class for reporting XML parsing errors. This is an exception class that you can use to encapsulate all of the information from Ælfred's error callback. This is not necessary for routine use of Ælfred, but it is used by the optional MstHandlerBase class. Note that the core Ælfred classes do not use this exception.
JEditTokenMarker: A token marker that splits lines of text into tokens. Each token carries a length field and an indentification tag that can be mapped to a color for painting that token. For performance reasons, the linked list of tokens is reused after each line is tokenized. Therefore, the return value of markTokens should only be used for immediate painting. Notably, it cannot be cached.
RESyntax: An RESyntax specifies the way a regular expression will be compiled. This class provides a number of predefined useful constants for emulating popular regular expression syntaxes. Additionally the user may construct his or her own syntax, using any combination of the syntax bit constants. The syntax is an optional argument to any of the matching methods on class RE.
YapodGroupQuery: Regroupe les éléments résultants de _previous par valeurs du champ _field. Ex : YapodQuery q = new YapodGroupQuery("x", previous) avec resultat de previous = [ [x=1 y=1], [x=1 y=2], [x=2 y=1], [x=2 y=2] ] q donne [ pair(1, [ [x=1 y=1], [x=1 y=2] ], pair(2, [ [x=2 y=1], [x=2 y=2] ] ]
REException: This is the regular expression exception class. An exception of this type defines the three attributes: A descriptive message of the error. An integral type code equivalent to one of the statically defined symbols listed below. The approximate position in the input string where the error occurred.
JEditToken: A linked list of tokens. Each token has three fields - a token identifier, which is a byte value that can be looked up in the array returned by JEditSyntaxDocument.getColors() to get a color value, a length value which is the length of the token in the text, and a pointer to the next token in the list.
JEditKeywordMap: A JEditKeywordMap is similar to a hashtable in that it maps keys to values. However, the `keys' are Swing segments. This allows lookups of text substrings without the overhead of creating a new string object. This class is used by JEditCTokenMarker to map keywords to ids.
SilkEnvironment: SilkEnvironments allow you to look up the value of a variable, given its name. Keep a list of variables and values, and a pointer to the parent environment. If a variable list ends in a symbol rather than null, it means that symbol is bound to the remainder of the values list.
JEditTextAreaDefaults: Encapsulates default settings for a text area. This can be passed to the constructor once the necessary fields have been filled out. The advantage of doing this over calling lots of set() methods after creating the text area is that this method is faster.
SilkPair: A SilkPair has two fields, first and rest (or car and cdr). The empty list is represented by null. The methods that you might expect here, like first, second, list, etc. are instead static methods in class SilkSchemeUtils.
BuTextArea: This component extends a JTextArea, providing methods to undo/redo, find/replace and read/save. This component extends a JTextArea. This component provides its own methods to read and save files (even to zip them).
SilkClosure: A closure is a user-defined procedure. It is "closed" over the environment in which it was created. To apply the procedure, bind the parameters to the passed in variables, and evaluate the body.
REMatch: An instance of this class represents a match completed by a gnu.regexp matching function. It can be used to obtain relevant information about the location of a match or submatch.
FuVectordouble: A vector for double values. This a vector for primitive types. This source code for this class is generated from FuVector.jgen. Public fields needed for Yapod serialization.
FuVectorlong: A vector for long values. This a vector for primitive types. This source code for this class is generated from FuVector.jgen. Public fields needed for Yapod serialization.
FuVectorint: A vector for int values. This a vector for primitive types. This source code for this class is generated from FuVector.jgen. Public fields needed for Yapod serialization.
BuActionEnabler: An utility class to enable/disable controls by their command name. The command name is a string defined for each control using setActionCommand().
BuActionChecker: An utility class to check/uncheck controls by their command name. The command name is a string defined for each control using setActionCommand().
BuGridLayout: Lays out in a grid a set of components. Not like the java.awt.GridLayout, rows may have different heigths and columns may have different widths.

Home | Contact Us | Privacy Policy | Terms of Service