Add constructors

This commit is contained in:
J-Jamet
2018-03-25 15:49:13 +02:00
parent af0359132e
commit 32bef7b099
4 changed files with 9 additions and 3 deletions

View File

@@ -89,7 +89,6 @@ public class PwEntryV3 extends PwEntry {
private String binaryDesc;
private byte[] binaryData;
public PwEntryV3() {
super();
}

View File

@@ -61,6 +61,7 @@ public class PwEntryV4 extends PwEntry implements ITimeLogger {
private String tags = "";
public PwEntryV4() {
super();
}
public PwEntryV4(PwGroupV4 p) {

View File

@@ -37,6 +37,10 @@ public class PwGroupV3 extends PwGroup {
/** Used by KeePass internally, don't use */
private int flags;
public PwGroupV3() {
super();
}
@Override
public PwGroup getParent() {
return parent;

View File

@@ -43,7 +43,9 @@ public class PwGroupV4 extends PwGroup implements ITimeLogger {
private Boolean enableSearching = null;
private UUID lastTopVisibleEntry = PwDatabase.UUID_ZERO;
public PwGroupV4() {}
public PwGroupV4() {
super();
}
public PwGroupV4(String name, PwIconStandard icon) {
super.construct();