28 lines
465 B
Java
28 lines
465 B
Java
package mod_quicklaunch;
|
|
|
|
public class Shortcut {
|
|
|
|
private String shortcut;
|
|
private String path;
|
|
|
|
public Shortcut(String shortcut,String path){
|
|
this.shortcut = shortcut;
|
|
this.path = path;
|
|
}
|
|
public String getShortcut() {
|
|
return shortcut;
|
|
}
|
|
public void setShortcut(String shortcut) {
|
|
this.shortcut = shortcut;
|
|
}
|
|
public String getPath() {
|
|
return path;
|
|
}
|
|
public void setPath(String path) {
|
|
this.path = path;
|
|
}
|
|
|
|
|
|
|
|
}
|