mirror of https://github.com/dspinellis/UMLGraph
New regression test to make sure the fixed bug doesn't get back
This commit is contained in:
parent
fd167e489e
commit
f7f0725667
|
|
@ -0,0 +1,13 @@
|
|||
#!/usr/local/bin/dot
|
||||
#
|
||||
# Class diagram
|
||||
# Generated by UmlGraph version 4.1 (http://www.spinellis.gr/sw/umlgraph)
|
||||
#
|
||||
|
||||
digraph G {
|
||||
edge [fontname="Helvetica",fontsize=10,labelfontname="Helvetica",labelfontsize=10];
|
||||
node [fontname="Helvetica",fontsize=10,shape=plaintext];
|
||||
// test.TestHideOp
|
||||
c118 [label=<<table border="0" cellborder="1" cellspacing="0" cellpadding="2" port="p"><tr><td><table border="0" cellspacing="0" cellpadding="1"><tr><td> TestHideOp </td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="1"><tr><td align="left"> </td></tr></table></td></tr><tr><td><table border="0" cellspacing="0" cellpadding="1"><tr><td align="left"> </td></tr></table></td></tr></table>>, fontname="Helvetica", fontcolor="black", fontsize=10.0];
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
// $Id$
|
||||
package test;
|
||||
|
||||
/**
|
||||
* @hidden
|
||||
* @opt operations
|
||||
*/
|
||||
class UMLOptions{}
|
||||
|
||||
public class TestHideOp {
|
||||
/**
|
||||
* @hidden
|
||||
*/
|
||||
public void hiddenOperation();
|
||||
}
|
||||
Loading…
Reference in New Issue