summaryrefslogtreecommitdiff
path: root/Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/FloatProfileProperty.java
diff options
context:
space:
mode:
authortkellner <tkellner@3a0b52a2-8410-0410-bc02-ff6273a87459>2012-08-01 09:10:43 +0000
committertkellner <tkellner@3a0b52a2-8410-0410-bc02-ff6273a87459>2012-08-01 09:10:43 +0000
commit2c398de4ce47e3725da3f544a5da7e1b62c0156a (patch)
tree96b03fa1dc895e5db1cde515d0771bd2d7bcf1ec /Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/FloatProfileProperty.java
parent91841d3a3dfaeb272e60c35dda7362e63d6e42e5 (diff)
downloadpdf-over-2c398de4ce47e3725da3f544a5da7e1b62c0156a.tar.gz
pdf-over-2c398de4ce47e3725da3f544a5da7e1b62c0156a.tar.bz2
pdf-over-2c398de4ce47e3725da3f544a5da7e1b62c0156a.zip
Removed old spezification projekt
git-svn-id: https://svn.iaik.tugraz.at/svn/egiz/prj/current/12PDF-OVER-4.0@12242 3a0b52a2-8410-0410-bc02-ff6273a87459
Diffstat (limited to 'Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/FloatProfileProperty.java')
-rw-r--r--Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/FloatProfileProperty.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/FloatProfileProperty.java b/Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/FloatProfileProperty.java
deleted file mode 100644
index 51c4089e..00000000
--- a/Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/FloatProfileProperty.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package at.asit.pdfover.pdfsignator.profileproperties;
-
-import at.asit.pdfover.pdfsignator.InvalidPropertyTypeException;
-import at.asit.pdfover.pdfsignator.InvalidPropertyValueException;
-
-public class FloatProfileProperty extends ProfileProperty {
- /**
- * Float value of property
- */
- protected Float fvalue = null;
-
- /**
- * Sets the float value of the Property
- * @param value The float value
- * @throws InvalidPropertyValueException
- * @throws InvalidPropertyTypeException
- */
- public void SetValue(float value) throws InvalidPropertyValueException, InvalidPropertyTypeException {
- this.SetTextValue(Float.toString(value));
- this.fvalue = value;
- }
-
- /**
- * Gets the float value
- * @return the float value of the property
- */
- public Float GetValue() {
- return this.fvalue;
- }
-}