Sho SHIMIZU
Committed by Gerrit Code Review

Follow the convention for Javadoc

Change-Id: I32742fdeafaa08171915883c6d6fdc0373db9efa
...@@ -65,6 +65,7 @@ public interface FilteringObjective extends Objective { ...@@ -65,6 +65,7 @@ public interface FilteringObjective extends Objective {
65 65
66 /** 66 /**
67 * Obtain this filtering type. 67 * Obtain this filtering type.
68 + *
68 * @return the type 69 * @return the type
69 */ 70 */
70 Type type(); 71 Type type();
...@@ -99,18 +100,21 @@ public interface FilteringObjective extends Objective { ...@@ -99,18 +100,21 @@ public interface FilteringObjective extends Objective {
99 100
100 /** 101 /**
101 * Permit this filtering condition set. 102 * Permit this filtering condition set.
103 + *
102 * @return a filtering builder 104 * @return a filtering builder
103 */ 105 */
104 Builder permit(); 106 Builder permit();
105 107
106 /** 108 /**
107 * Deny this filtering condition set. 109 * Deny this filtering condition set.
110 + *
108 * @return a filtering builder 111 * @return a filtering builder
109 */ 112 */
110 Builder deny(); 113 Builder deny();
111 114
112 /** 115 /**
113 * Assigns an application id. 116 * Assigns an application id.
117 + *
114 * @param appId an application id 118 * @param appId an application id
115 * @return a filtering builder 119 * @return a filtering builder
116 */ 120 */
......