[java-identity-provider COMMIT] /trunk/idp-installer/src/main/java/net/shibboleth/idp/installer/PropertiesWithComment...
noreply at shibboleth.net
noreply at shibboleth.net
Wed Dec 17 06:36:18 EST 2014
Author: iay
Date: Wed Dec 17 06:36:18 2014
New Revision: 7132
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7132&view=rev
Log:
Javadoc fixes.
Modified:
trunk/idp-installer/src/main/java/net/shibboleth/idp/installer/PropertiesWithComments.java
Modified: trunk/idp-installer/src/main/java/net/shibboleth/idp/installer/PropertiesWithComments.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-installer/src/main/java/net/shibboleth/idp/installer/PropertiesWithComments.java?rev=7132&r1=7131&r2=7132&view=diff
==============================================================================
--- trunk/idp-installer/src/main/java/net/shibboleth/idp/installer/PropertiesWithComments.java (original)
+++ trunk/idp-installer/src/main/java/net/shibboleth/idp/installer/PropertiesWithComments.java Wed Dec 17 06:36:18 2014
@@ -38,11 +38,16 @@
/**
* A package which is similar to Properties, but allows comments to be preserved. We use the Properties package to parse
- * the non comment lines
+ * the non-comment lines.
*/
public class PropertiesWithComments {
- /** The contents. The Object is either a string (the comment) or a {@link Pair<String, String>} (the property) */
+ /**
+ * The contents.
+ *
+ * Each {@link Object} is either a string (a non-property line) or a {@link CommentedProperty}
+ * (an optionally commented property definition).
+ */
private List<Object> contents;
/** The properties bit. */
More information about the commits
mailing list