Plugin{Data,Object}.preferences() added.

This commit is contained in:
Kolan Sh 2018-04-26 16:29:06 +03:00
parent 53e8ee66a3
commit 4a420d372b
1 changed files with 10 additions and 0 deletions

View File

@ -37,6 +37,11 @@ namespace LAview.Core {
* Get Plugin readable name.
*/
public abstract string get_readable_name ();
/**
* Open Preferences.
*/
public abstract void preferences ();
}
/**
@ -58,6 +63,11 @@ namespace LAview.Core {
* Compose the object.
*/
public abstract bool compose (Object parent, Gee.HashMap<string, AnswerValue> answers) throws Error;
/**
* Open Preferences.
*/
public abstract void preferences ();
}
/**