[Japi-cvs] SF.net SVN: japi: [205] libs/taglets/trunk/src/net/sf/japi/taglets
Status: Beta
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2006-11-25 10:15:31
|
Revision: 205
http://svn.sourceforge.net/japi/?rev=205&view=rev
Author: christianhujer
Date: 2006-11-25 02:15:28 -0800 (Sat, 25 Nov 2006)
Log Message:
-----------
Changed postcondition and precondition to be applicable to code only.
Modified Paths:
--------------
libs/taglets/trunk/src/net/sf/japi/taglets/PostconditionTaglet.java
libs/taglets/trunk/src/net/sf/japi/taglets/PreconditionTaglet.java
Modified: libs/taglets/trunk/src/net/sf/japi/taglets/PostconditionTaglet.java
===================================================================
--- libs/taglets/trunk/src/net/sf/japi/taglets/PostconditionTaglet.java 2006-11-21 22:23:03 UTC (rev 204)
+++ libs/taglets/trunk/src/net/sf/japi/taglets/PostconditionTaglet.java 2006-11-25 10:15:28 UTC (rev 205)
@@ -19,6 +19,26 @@
super("postcondition", "Postconditions");
}
+ /** {@inheritDoc} */
+ @Override public boolean inField() {
+ return false;
+ }
+
+ /** {@inheritDoc} */
+ @Override public boolean inOverview() {
+ return false;
+ }
+
+ /** {@inheritDoc} */
+ @Override public boolean inPackage() {
+ return false;
+ }
+
+ /** {@inheritDoc} */
+ @Override public boolean inType() {
+ return false;
+ }
+
/**
* Register this Taglet.
* @param tagletMap the map to register this tag to.
Modified: libs/taglets/trunk/src/net/sf/japi/taglets/PreconditionTaglet.java
===================================================================
--- libs/taglets/trunk/src/net/sf/japi/taglets/PreconditionTaglet.java 2006-11-21 22:23:03 UTC (rev 204)
+++ libs/taglets/trunk/src/net/sf/japi/taglets/PreconditionTaglet.java 2006-11-25 10:15:28 UTC (rev 205)
@@ -19,6 +19,26 @@
super("precondition", "Preconditions");
}
+ /** {@inheritDoc} */
+ @Override public boolean inField() {
+ return false;
+ }
+
+ /** {@inheritDoc} */
+ @Override public boolean inOverview() {
+ return false;
+ }
+
+ /** {@inheritDoc} */
+ @Override public boolean inPackage() {
+ return false;
+ }
+
+ /** {@inheritDoc} */
+ @Override public boolean inType() {
+ return false;
+ }
+
/**
* Register this Taglet.
* @param tagletMap the map to register this tag to.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|