Searched defs:tag (Results 1 - 11 of 11) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/history/
H A DBazaarTagEntry.java26 * Bazaar specific tag class with ability to compare itself with generic
33 public BazaarTagEntry(int revision, String tag) { argument
34 super(revision, tag);
39 assert this.revision != NOREV : "BazaarTagEntry created without tag specified.specified";
H A DMercurialTagEntry.java26 * Mercurial specific tag class with ability to compare itself with generic
33 public MercurialTagEntry(int revision, String tag) { argument
34 super(revision, tag);
H A DTagEntry.java28 * Class representing tag as Pair<revision, tag string>. Has overloaded
79 public void setTags(String tag) { argument
80 this.tags = tag;
/opengrok/src/org/opensolaris/opengrok/index/
H A DCommandLineOptions.java139 private void spool(BufferedReader reader, PrintWriter out, String tag) throws IOException { argument
142 if (line.equals(tag)) {
/opengrok/src/org/opensolaris/opengrok/search/
H A DHit.java206 * Holds value of property tag.
208 private String tag; field in class:Hit
211 * Getter for property tag.
212 * @return Value of property tag.
216 return this.tag;
220 * Setter for property tag.
221 * @param tag New value of property tag.
223 public void setTag(String tag) { argument
225 this.tag
[all...]
/opengrok/src/org/opensolaris/opengrok/web/
H A DEftarFile.java65 public String tag; field in class:EftarFile.Node
71 public Node(long hash, String tag) { argument
73 this.tag = tag;
155 if (n.tag != null) {
156 out.write(n.tag.getBytes());
157 offset += n.tag.length();
166 if (childnode.tag == null) {
169 out.writeShort((short) childnode.tag.length());
172 if (childnode.tag
[all...]
H A DUtil.java435 * @return encoded text for use in <a title=""> tag
997 * Print set of messages into json object for given tag.
999 * @param tag return messages in json format for the given tag
1000 * @return json object with 'tag' and 'messages' attribute or null
1003 public static JSONObject messagesToJsonObject(String tag) { argument
1004 SortedSet<Message> messages = RuntimeEnvironment.getInstance().getMessages(tag);
1009 toRet.put("tag", tag);
1025 for (String tag
[all...]
H A DPageConfig.java558 * Get the definition tag for the request related file or directory.
560 * @return an empty string if not found, the tag otherwise.
1323 public SortedSet<Message> getMessages(String tag) { argument
1324 return env.getMessages(tag);
/opengrok/src/org/opensolaris/opengrok/configuration/messages/
H A DMessage.java133 * @param tag the tag
134 * @return true if message has this tag
136 public boolean hasTag(String tag) { argument
137 return tags.contains(tag);
148 public Message addTag(String tag) { argument
149 this.tags.add(tag);
/opengrok/src/org/opensolaris/opengrok/configuration/
H A DRuntimeEnvironment.java1237 * Get the default set of messages for the main tag.
1249 * Get the set of messages for the arbitrary tag
1251 * @param tag the message tag
1254 public SortedSet<Message> getMessages(String tag) { argument
1258 return emptyMessageSet(tagMessages.get(tag));
1277 for (String tag : m.getTags()) {
1278 if (!tagMessages.containsKey(tag)) {
1279 tagMessages.put(tag, new ConcurrentSkipListSet<>());
1281 if (tagMessages.get(tag)
[all...]
/opengrok/lib/
H A Dbcel-6.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 32 milliseconds