| Author | djarvis <email> |
|---|---|
| Date | 2016-12-14 22:38:06 GMT-0800 |
| Commit | 693b1c401dab986f71598732e003705066f1b35f |
| Parent | 5a3ec32 |
| Delta | 17 lines added, 3 lines removed, 14-line increase |
| preferences.root.state=state | ||
| preferences.root.options=options | ||
| +preferences.root.definition.source=definition.source | ||
| # ######################################################################## |
| import org.ahocorasick.trie.*; | ||
| import org.ahocorasick.trie.Trie.TrieBuilder; | ||
| -import static org.apache.commons.lang.RandomStringUtils.randomNumeric; | ||
| -import org.apache.commons.lang.StringUtils; | ||
| +import static org.apache.commons.lang3.RandomStringUtils.randomNumeric; | ||
| +import org.apache.commons.lang3.StringUtils; | ||
| /** |
| */ | ||
| public TreeView<String> asTreeView() throws IOException; | ||
| - | ||
| + | ||
| /** | ||
| * Returns all the strings with their values resolved in a flat hierarchy. | ||
| * This copies all the keys and resolved values into a new map. | ||
| * | ||
| * @return The new map created with all values having been resolved, | ||
| * recursively. | ||
| */ | ||
| public Map<String, String> getResolvedMap(); | ||
| + | ||
| + /** | ||
| + * Must return a re-loadable path to the data source. For a file, this is the | ||
| + * absolute file path. For a database, this could be the JDBC connection. For | ||
| + * a web site, this might be the GET url. | ||
| + * | ||
| + * @return A non-null, non-empty string. | ||
| + */ | ||
| + @Override | ||
| + public String toString(); | ||
| } | ||
| +application: | ||
| + title: Scrivenvar | ||
| + | ||