summaryrefslogtreecommitdiff
path: root/Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java
diff options
context:
space:
mode:
authortkellner <tkellner@3a0b52a2-8410-0410-bc02-ff6273a87459>2012-08-01 09:10:42 +0000
committertkellner <tkellner@3a0b52a2-8410-0410-bc02-ff6273a87459>2012-08-01 09:10:42 +0000
commit67b6605775cecd7b769991cf922ed6109f6c0d8c (patch)
tree227aef7197553468eecaeef5f3aa19a51429f06a /Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java
parent7ada2b5aa5978e21d30b98735e19959e755bc37e (diff)
downloadpdf-over-67b6605775cecd7b769991cf922ed6109f6c0d8c.tar.gz
pdf-over-67b6605775cecd7b769991cf922ed6109f6c0d8c.tar.bz2
pdf-over-67b6605775cecd7b769991cf922ed6109f6c0d8c.zip
PDF Signator Schnittstelle mit EUML2 in Eclipse für Codegenerierung
git-svn-id: https://svn.iaik.tugraz.at/svn/egiz/prj/current/12PDF-OVER-4.0@12240 3a0b52a2-8410-0410-bc02-ff6273a87459
Diffstat (limited to 'Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java')
-rw-r--r--Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java b/Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java
new file mode 100644
index 00000000..35d903af
--- /dev/null
+++ b/Spezifikation/PDFSignator Schnittstelle/src/at/asit/pdfover/pdfsignator/profileproperties/StringProfileProperty.java
@@ -0,0 +1,24 @@
+package at.asit.pdfover.pdfsignator.profileproperties;
+
+import at.asit.pdfover.pdfsignator.InvalidPropertyTypeException;
+import at.asit.pdfover.pdfsignator.InvalidPropertyValueException;
+
+public class StringProfileProperty extends ProfileProperty {
+ /**
+ * Sets the string value of the Property
+ * @param value The string value
+ * @throws InvalidPropertyValueException
+ * @throws InvalidPropertyTypeException
+ */
+ public void SetValue(String value) throws InvalidPropertyValueException, InvalidPropertyTypeException {
+ this.SetTextValue(value);
+ }
+
+ /**
+ * Gets the string value
+ * @return the string value of the property
+ */
+ public String GetValue() {
+ return this.GetTextValue();
+ }
+}