15 lines
224 B
Java
15 lines
224 B
Java
package org.lucares.pdbui;
|
|
|
|
public interface PropertyKeys {
|
|
|
|
/**
|
|
* The path for generated images
|
|
*/
|
|
String PATH_GENERATED_IMAGES = "path.output";
|
|
|
|
/**
|
|
* Path for temporary files
|
|
*/
|
|
String TMP_DIR = "path.tmp";
|
|
}
|