Searched refs:key (Results 1 - 15 of 15) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/management/
H A DManagementMBean.java103 public String getProperty(String key); argument
109 * @param key the String key for the property to be set.
112 public void setProperty(String key, String value); argument
118 public String getSystemProperty(String key); argument
122 * @param key the String key for the property to be set.
125 public void setSystemProperty(String key, String value); argument
131 public String getSystemEnvProperty(String key); argument
H A DManagement.java108 public String getProperty(String key) { argument
109 return ogaProperties.getProperty(key);
114 * @param key the String key for the property to be set.
118 public void setProperty(String key, String value) { argument
119 if (key == null) {
120 log.severe("Trying to set property with key == null");
123 ogaProperties.setProperty(key, value);
176 public String getSystemProperty(String key) { argument
177 return System.getProperty(key);
184 setSystemProperty(String key, String value) argument
196 getSystemEnvProperty(String key) argument
[all...]
H A DOGAgent.java189 private static void setIfNotSet(Properties props, String key, String val) { argument
190 if (!props.keySet().contains(key)) {
191 props.setProperty(key, val);
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DPhrases.java83 String key = i.next().toString();
84 String value = get(key).toString();
85 s.append(key.toString());
H A DArchiveParser.jj328 { String key;
332 { key = id()
336 { if (map != null) map.put(key, values.toString()); }
H A DArchiveParser.java287 String key;
290 key = id();
305 if (map != null) map.put(key, values.toString());
H A DArchive.java468 * Each phrase has a key and a list of values associated with it.
469 * @param key The phrases key.
470 * @param values The values under the key.
473 public void addPhrase(String key, Collection values) argument
475 phrases.put(key, values);
/opengrok-jel/src/org/opensolaris/opengrok/management/client/
H A DSettingsPersistence.java44 /** property key used to obtain the timeout for indexing */
47 /** property key used to obtain the JMX connection timeout value */
50 /** property key used to obtain the file log path */
52 /** property key used to obtain file log level */
55 /** property key used to obtain console log level */
114 * Get the property with the given key.
115 * @param key key to use for lookup.
118 public String getProperty(String key) { argument
119 return ogcProperties.getProperty(key);
127 setProperty(String key, String val) argument
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DCVSHistoryParser.java85 String key = keyVal[0].trim();
88 if ("date".equals(key)) {
97 } else if ("author".equals(key)) {
H A DJDBCHistoryCache.java179 * @param key name of the query
182 private static String getQuery(String key) { argument
183 return QUERIES.getProperty(key);
1104 * Return the integer key generated by the previous execution of a
1105 * statement. The key should be a single INTEGER, and the statement
1106 * should insert exactly one row, so there should be only one key.
1108 * @return the integer key for the newly inserted row, or {@code null}
1109 * if there is no key
/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DIndexer.java445 Object key = f.get(null);
446 if (key != null) {
448 System.getProperty(key.toString()));
/opengrok-jel/lib/
H A Dswing-layout-0.9.jar ... .jdesktop.layout.AquaLayoutStyle$ComponentInsets componentInsets String key int subindex int j int keys java.awt. ...
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
H A Dservlet-api.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/http/ javax/servlet/resources/ javax/ ...
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DUtil.java456 * @param key the name of the parameter to add. Append as is!
461 public static void appendQuery(StringBuilder buf, String key, argument
465 buf.append("&").append(key).append('=')

Completed in 28 milliseconds