/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/ |
H A D | Line.java | 62 * Line contains both the original text of the line, plus the node 75 Object text; field in class:Line 77 Line(Node revision, Object text) argument 79 this.text = text; 115 return text;
|
H A D | Lines.java | 60 import java.text.Format; 61 import java.text.MessageFormat; 68 * A list of the lines in the text of a revision annotated with the 91 public Lines(String text) argument 93 this(null, Diff.stringToArray(text)); 97 public Lines(Node release, String text) argument 99 this(release, Diff.stringToArray(text)); 102 public Lines(Object[] text) argument 104 this(null, text); 108 public Lines(Node release, Object[] text) argument [all...] |
H A D | KeywordsFormat.java | 64 import java.text.Format; 65 import java.text.MessageFormat; 105 * update the given text made of RCS keywords with the appropriate 107 * @param text the input text containing the RCS keywords. 109 * @return the formatted text with the RCS keywords. 111 String update(String text, Object[] revisionInfo) argument 113 String data = text 129 * @param text the text t 133 reset(String text) argument [all...] |
H A D | ArchiveParser.java | 106 text(arc); 411 final public void text(Archive arc) throws ParseException { method in class:ArchiveParser
|
H A D | Archive.java | 98 * <p>Within this library, the word <i>text</i> means a unit of information 100 * version of a text. Each <i>revision</i> has a <i>version number</i> 105 * <p>Revisions of a text are represented as <code>Object[]</code> because 106 * the diff engine is capable of handling more than plain text. In fact, 130 * Object[] text = archive.getRevision(versionNumber); 136 * last changed or added. To retrieve annotated text use: 139 * {@link Line Line[]} text = archive.getRevision(versionNumber); 140 * for(int i = 0; i < text.length(); i++) 141 * System.out.println(text[i].revision.version); 188 * Creates a new archive and sets the text o 192 Archive(String text, String desc) argument 205 Archive(String text, String desc, String vernum) argument 218 Archive(String text, String desc, Version vernum) argument 1016 addRevision(Object[] text, String log) argument 1045 addRevision(Object[] text, String vernum, String log) argument 1070 addRevision(Object[] text, Version vernum, String log) argument 1162 doKeywords(Object[] text, Node rev) argument 1195 removeKeywords(Object[] text) argument [all...] |
H A D | Node.java | 60 import java.text.DateFormat; 61 import java.text.Format; 62 import java.text.MessageFormat; 63 import java.text.SimpleDateFormat; 84 * <p>Nodes store the deltas between two revisions of the text.</p> 116 protected Object[] text; field in class:Node 230 * Ghost nodes have no associated text ot deltas. CVS uses 236 return version.isGhost() || text == null; 349 * Sets the text for the node's revision. 350 * <p>For archives containing binary information, the text i [all...] |
/opengrok-jel/src/org/opensolaris/opengrok/search/ |
H A D | Summary.java | 26 /** A fragment of text within a summary. */ 28 private final String text; field in class:Summary.Fragment 30 /** Constructs a fragment for the given text. 31 * @param text text for this fragment 33 public Fragment(String text) { this.text = text; } argument 35 /** Get the text of this fragment. 36 * @return the text o 60 Highlight(String text) argument [all...] |
H A D | Summarizer.java | 56 /** Converts text to tokens. */ 118 /** Returns a summary for the given pre-tokenized text. */ 119 public Summary getSummary(String text) throws IOException { argument 120 if (text == null) { 128 Token[] tokens = getTokens(text); // parse text to token array 202 excerpt.add(new Summary.Fragment(text.substring(offset, t.startOffset()))); 203 excerpt.add(new Summary.Highlight(text.substring(t.startOffset(),t.endOffset()))); 215 // them (with intervening text) to the excerpt. Now 216 // we need to add the trailing edge of text 284 getTokens(String text) argument [all...] |
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/diff/ |
H A D | Diff.java | 68 * <p>Within this library, the word <i>text</i> means a unit of information 118 * @param original the original text that will be compared 128 * @param original the original text which will be compared against 242 * @param text The input sequence. 246 public static Object[] editAll(Object[] text) argument 248 Object[] result = new String[text.length]; 250 for(int i = 0; i < text.length; i++) 251 result[i] = text[i] + " <edited>"; 258 * @param text The input sequence. 261 public static Object[] randomEdit(Object[] text) argument 273 randomEdit(Object[] text, long seed) argument 304 shuffle(Object[] text) argument 316 shuffle(Object[] text, long seed) argument [all...] |
/opengrok-jel/src/org/opensolaris/opengrok/analysis/ |
H A D | Definitions.java | 152 public final String text; field in class:Definitions.Tag 154 protected Tag(int line, String symbol, String type, String text) { argument 158 this.text = text; 162 public void addTag(int line, String symbol, String type, String text) { argument 169 final String internedText = text.intern();
|
/opengrok-jel/lib/ |
H A D | jrcs.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/jrcs/ ... |
H A D | swing-layout-0.9.jar | ... .swing.JTextArea, int) javax.swing.JTextArea text
int height
java.awt.Insets insets
java. ... |