diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d374482 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + +## Version 1.1.0 + + - Added more methods for direct access in the Registry.java + - Added the possibility to remove values (forgot that in the last release) + - Added the possibility to export and import keys + - Added the possibility to reload values + +## Version 1.0.0 + + - Release \ No newline at end of file diff --git a/README.md b/README.md index 297326f..e47821f 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,20 @@ public static void main(String[] args) { } ``` +# Changelog + +## Version 1.1.0 + + - Added more methods for direct access in the Registry.java + - Added the possibility to remove values (forgot that in the last release) + - Added the possibility to export and import keys + - Added the possibility to reload values + +## Version 1.0.0 + + - Release + # Links -See the [download page]() -See the [online documentation]() \ No newline at end of file +See the [download page](https://github.com/RalleYTN/SimpleRegistry/releases) +See the [changelog](https://github.com/RalleYTN/SimpleRegistry/blob/master/CHANGELOG.md) +See the [online documentation](https://ralleytn.github.io/SimpleRegistry/) \ No newline at end of file diff --git a/docs/allclasses-frame.html b/docs/allclasses-frame.html index 75fcd99..54c24c0 100644 --- a/docs/allclasses-frame.html +++ b/docs/allclasses-frame.html @@ -2,9 +2,9 @@
- +public final class Key
-extends java.lang.Object
+extends java.lang.Object
+implements Reloadable
void
delete()
+void
deleteAllValues()
+void
deleteDefaultValue()
+void
deleteValue(java.lang.String name)
+void
export(java.io.File exportFile)
+Key
getChild(java.lang.String name)
java.util.List<Key>
getChilds()
Value
getDefaultValue()
java.lang.String
getName()
Key
getParent()
java.lang.String
getPath()
Value
getValueByName(java.lang.String name)
java.util.List<Value>
getValues()
void
reload()
void
setDefaultValue(Value.Type type,
char seperator,
@@ -183,7 +218,7 @@ Method Summary
Sets the default value.
void
setValue(java.lang.String name,
Value.Type type,
@@ -192,7 +227,7 @@ Method Summary
Sets a value.
java.lang.String
toString()
public final void deleteValue(java.lang.String name) + throws java.io.IOException+
name
- name of the value you wish to deletejava.io.IOException
- if an error occurspublic final void deleteDefaultValue() + throws java.io.IOException+
java.io.IOException
- if an error occurspublic final void deleteAllValues() + throws java.io.IOException+
java.io.IOException
- if an error occurspublic final void export(java.io.File exportFile) + throws java.io.IOException+
exportFile
- target of the exportjava.io.IOException
- if an error occurspublic final void delete() + throws java.io.IOException+
java.io.IOException
- if an error occurspublic void reload() - throws java.io.IOException+
public final void reload() + throws java.io.IOException
reload
in interface Reloadable
java.io.IOException
- if an error occurspublic void setDefaultValue(Value.Type type, - char seperator, - java.lang.String rawValue) - throws java.io.IOException+
public final void setDefaultValue(Value.Type type, + char seperator, + java.lang.String rawValue) + throws java.io.IOException
public void setValue(java.lang.String name, - Value.Type type, - char seperator, - java.lang.String rawValue) - throws java.io.IOException+
public final void setValue(java.lang.String name, + Value.Type type, + char seperator, + java.lang.String rawValue) + throws java.io.IOException
public Value getDefaultValue()+
public final Value getDefaultValue()
public java.lang.String getPath()+
public final java.lang.String getPath()
public java.lang.String getName()+
public final java.lang.String getName()
public Key getChild(java.lang.String name) - throws java.io.IOException+
public final Key getChild(java.lang.String name) + throws java.io.IOException
name
- name of the childpublic java.util.List<Key> getChilds() - throws java.io.IOException+
public final java.util.List<Key> getChilds() + throws java.io.IOException
public Key getParent() - throws java.io.IOException+
public final Key getParent() + throws java.io.IOException
public java.util.List<Value> getValues()+
public final java.util.List<Value> getValues()
public Value getValueByName(java.lang.String name)+
public final Value getValueByName(java.lang.String name)
name
- value namepublic java.lang.String toString()+
public final java.lang.String toString()
toString
in class java.lang.Object