aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeInstance.java
diff options
context:
space:
mode:
authorClaude Brisson <cbrisson@apache.org>2019-03-11 11:09:53 +0000
committerClaude Brisson <cbrisson@apache.org>2019-03-11 11:09:53 +0000
commitcff1b533e2eed743724dbb667cdffd186436e50d (patch)
tree651396cd1d10187b63bc8871d91f98ecfc8fe794 /velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeInstance.java
parent475102e1a631ef896f85db7f750533211b9d0b11 (diff)
downloadapache-velocity-engine-cff1b533e2eed743724dbb667cdffd186436e50d.tar.gz
[engine] javadoc and indentation fixes
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1855206 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeInstance.java')
-rw-r--r--velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeInstance.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeInstance.java b/velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeInstance.java
index 8350299c..3386824d 100644
--- a/velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeInstance.java
+++ b/velocity-engine-core/src/main/java/org/apache/velocity/runtime/RuntimeInstance.java
@@ -73,16 +73,16 @@ import java.util.Properties;
import java.util.Set;
/**
- * This is the Runtime system for Velocity. It is the
+ * <p>This is the Runtime system for Velocity. It is the
* single access point for all functionality in Velocity.
* It adheres to the mediator pattern and is the only
* structure that developers need to be familiar with
- * in order to get Velocity to perform.
+ * in order to get Velocity to perform.</p>
*
- * The Runtime will also cooperate with external
+ * <p>The Runtime will also cooperate with external
* systems, which can make all needed setProperty() calls
- * before calling init().
- *
+ * before calling init().</p>
+ * <pre>
* -----------------------------------------------------------------------
* N O T E S O N R U N T I M E I N I T I A L I Z A T I O N
* -----------------------------------------------------------------------
@@ -528,6 +528,7 @@ public class RuntimeInstance implements RuntimeConstants, RuntimeServices
/**
* Add all properties contained in the file fileName to the RuntimeInstance properties
+ * @param fileName
*/
public void setProperties(String fileName)
{
@@ -553,6 +554,7 @@ public class RuntimeInstance implements RuntimeConstants, RuntimeServices
/**
* Add all the properties in props to the RuntimeInstance properties
+ * @param props
*/
public void setProperties(Properties props)
{