blob: 1441a3bae9729a06d57c0499651a2327d72bae75 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
package models;
public class Image {
public static String ImageId;
public static String Version;
public static String Imagename;
public static String NewName;
public static String Imagepath;
public static String OS;
public static int ShareMode;
public static boolean Licensed;
public static boolean Internet;
public static boolean Vorlage;
public static int Ram;
public static int Cpu;
public static long Filesize;
public static String Desc;
private Image() {
// Prevent instantiation
}
public static void reset() {
ImageId = null;
Version = null;
Imagename = null;
NewName = null;
Imagepath = null;
OS = null;
ShareMode = 0;
Licensed = false;
Internet = false;
Vorlage = false;
Ram = 0;
Cpu = 0;
Filesize = 0;
Desc = null;
}
}
|