Updated to follow the new @match syntax, and to assume that every view is hidden by default anyway

This commit is contained in:
Andrea Aime 2005-12-28 14:58:02 +00:00
parent 39048e6f0f
commit 4142c0ef11
4 changed files with 17 additions and 8 deletions

View File

@ -1,7 +1,6 @@
package gr.spinellis.views;
/**
* @hidden
* @view
*/
public class ViewAll {

View File

@ -1,9 +1,12 @@
package gr.spinellis.views;
/**
* @hidden
* @view
* @opt_override gr.spinellis.* attributes operations types
*
* @match gr.spinellis.*
* @opt attributes
* @opt operations
* @opt types
*/
public class ViewAllDetailed {
}

View File

@ -1,9 +1,12 @@
package gr.spinellis.views;
/**
* @hidden
* @view
* @opt_override gr.spinellis.* attributes nodefontsize=16 nodefillcolor=yellow
*
* @match gr.spinellis.*
* @opt attributes
* @opt nodefontsize 16
* @opt nodefillcolor yellow
*/
public class ViewAtt {
}

View File

@ -1,10 +1,14 @@
package gr.spinellis.views;
/**
* @hidden
* @view
* @opt_override gr.spinellis.* hideall
* @opt_override gr.spinellis.product.* !hideall attributes
*
* @match .*
* @opt hide
*
* @match gr.spinellis.product.*
* @opt !hide
* @opt attributes
*/
public class ViewProduct {
}