mirror of https://github.com/dspinellis/UMLGraph
Updated to follow the new @match syntax, and to assume that every view is hidden by default anyway
This commit is contained in:
parent
39048e6f0f
commit
4142c0ef11
|
|
@ -1,7 +1,6 @@
|
|||
package gr.spinellis.views;
|
||||
|
||||
/**
|
||||
* @hidden
|
||||
* @view
|
||||
*/
|
||||
public class ViewAll {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue