Skip to content
Snippets Groups Projects
Commit 63d0edf7 authored by Thomas Oster's avatar Thomas Oster
Browse files

Fix: XMLEncoder seems to irgnore inerhited getters and setters, which caused...

Fix: XMLEncoder seems to irgnore inerhited getters and setters, which caused VisiCut to always loose settings on Epilog cutters
parent 6b1ecd54
No related branches found
No related tags found
No related merge requests found
No preview for this file type
libs.CopyLibs.classpath=\ libs.CopyLibs.classpath=\
${base}/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar ${base}/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar
libs.CopyLibs.displayName=CopyLibs Task
libs.CopyLibs.prop-version=1.0
libs.junit.classpath=\ libs.junit.classpath=\
${base}/junit/junit-3.8.2.jar ${base}/junit/junit-3.8.2.jar
libs.junit.javadoc=\ libs.junit.javadoc=\
......
This diff is collapsed.
...@@ -4,5 +4,5 @@ build.xml.stylesheet.CRC32=28e38971@1.44.1.45 ...@@ -4,5 +4,5 @@ build.xml.stylesheet.CRC32=28e38971@1.44.1.45
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=25a416f2 nbproject/build-impl.xml.data.CRC32=25a416f2
nbproject/build-impl.xml.script.CRC32=9b592fbc nbproject/build-impl.xml.script.CRC32=0f425dea
nbproject/build-impl.xml.stylesheet.CRC32=8cfa0561@1.51.0.46 nbproject/build-impl.xml.stylesheet.CRC32=6ddba6b6@1.53.1.46
...@@ -78,4 +78,64 @@ public class EpilogHelix extends EpilogCutter ...@@ -78,4 +78,64 @@ public class EpilogHelix extends EpilogCutter
return result; return result;
} }
//We need this methods for XMLEncoder to work properly
@Override
public boolean isAutoFocus()
{
return super.isAutoFocus();
}
@Override
public void setAutoFocus(boolean b)
{
super.setAutoFocus(b);
}
@Override
public void setBedHeight(double bh)
{
super.setBedHeight(bh);
}
@Override
public double getBedHeight()
{
return super.getBedHeight();
}
@Override
public void setBedWidth(double bh)
{
super.setBedWidth(bh);
}
@Override
public double getBedWidth()
{
return super.getBedWidth();
}
@Override
public void setHostname(String host)
{
super.setHostname(host);
}
@Override
public String getHostname()
{
return super.getHostname();
}
@Override
public int getPort()
{
return super.getPort();
}
@Override
public void setPort(int p)
{
super.setPort(p);
}
} }
...@@ -78,4 +78,64 @@ public class EpilogZing extends EpilogCutter ...@@ -78,4 +78,64 @@ public class EpilogZing extends EpilogCutter
return result; return result;
} }
//We need this methods for XMLEncoder to work properly
@Override
public boolean isAutoFocus()
{
return super.isAutoFocus();
}
@Override
public void setAutoFocus(boolean b)
{
super.setAutoFocus(b);
}
@Override
public void setBedHeight(double bh)
{
super.setBedHeight(bh);
}
@Override
public double getBedHeight()
{
return super.getBedHeight();
}
@Override
public void setBedWidth(double bh)
{
super.setBedWidth(bh);
}
@Override
public double getBedWidth()
{
return super.getBedWidth();
}
@Override
public void setHostname(String host)
{
super.setHostname(host);
}
@Override
public String getHostname()
{
return super.getHostname();
}
@Override
public int getPort()
{
return super.getPort();
}
@Override
public void setPort(int p)
{
super.setPort(p);
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment