mirror of https://github.com/dspinellis/UMLGraph
invalid xml
This commit is contained in:
parent
26c9f9d1e5
commit
bab25cbe35
|
|
@ -31,7 +31,7 @@ class SetTopController implements URLStreamHandler {
|
||||||
void connect() {}
|
void connect() {}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @depend - <friend> - SetTopController */
|
/** @depend - <friend> - SetTopController */
|
||||||
class ChannelIterator {}
|
class ChannelIterator {}
|
||||||
|
|
||||||
interface URLStreamHandler {
|
interface URLStreamHandler {
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,8 @@ class UMLOptions {}
|
||||||
|
|
||||||
class Person {
|
class Person {
|
||||||
House[] houses;
|
House[] houses;
|
||||||
List<Dog> dogs;
|
List<Dog> dogs;
|
||||||
|
|
||||||
public Room getFavouriteRoom(House house) {}
|
public Room getFavouriteRoom(House house) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -29,7 +29,7 @@ class Person {
|
||||||
* @opt inferreltype composed
|
* @opt inferreltype composed
|
||||||
*/
|
*/
|
||||||
class House {
|
class House {
|
||||||
Map<String, Room> nameRoomMap;
|
Map<String, Room> nameRoomMap;
|
||||||
}
|
}
|
||||||
|
|
||||||
class Room {}
|
class Room {}
|
||||||
|
|
@ -37,7 +37,6 @@ class Room {}
|
||||||
class Dog {
|
class Dog {
|
||||||
Person owner;
|
Person owner;
|
||||||
}
|
}
|
||||||
|
|
||||||
</fmtcode>
|
</fmtcode>
|
||||||
</td><td>
|
</td><td>
|
||||||
<img src="infer.png" alt="UML diagram with relationship inference" />
|
<img src="infer.png" alt="UML diagram with relationship inference" />
|
||||||
|
|
|
||||||
|
|
@ -93,18 +93,18 @@ clean:
|
||||||
|
|
||||||
build/%.dot : %.java
|
build/%.dot : %.java
|
||||||
mkdir -p $(dir $@)
|
mkdir -p $(dir $@)
|
||||||
$(jd) $(jd_flags) $(detailed_flags) -output $@ $<
|
$(jd) $(jd_flags) $(detailed_flags) -output $@ $<
|
||||||
|
|
||||||
build/%-small.dot : %.java
|
build/%-small.dot : %.java
|
||||||
mkdir -p $(dir $@)
|
mkdir -p $(dir $@)
|
||||||
$(jd) $(jd_flags) -output $@ $<
|
$(jd) $(jd_flags) -output $@ $<
|
||||||
|
|
||||||
%.png : %.dot
|
%.png : %.dot
|
||||||
dot -Nheight=0.2 -Elabelfontcolor=DarkSlateBlue -Elabelfontsize=8 -Tpng -o $@ $<
|
dot -Nheight=0.2 -Elabelfontcolor=DarkSlateBlue -Elabelfontsize=8 -Tpng -o $@ $<
|
||||||
|
|
||||||
build/%.png : %.fig
|
build/%.png : %.fig
|
||||||
mkdir -p $(dir $@)
|
mkdir -p $(dir $@)
|
||||||
fig2dev -L png -S 4 $< $@
|
fig2dev -L png -S 4 $< $@
|
||||||
|
|
||||||
dot: $(dot_files)
|
dot: $(dot_files)
|
||||||
|
|
||||||
|
|
@ -112,7 +112,7 @@ png: $(png_files)
|
||||||
|
|
||||||
build/%.png : %.png
|
build/%.png : %.png
|
||||||
mkdir -p $(dir $@)
|
mkdir -p $(dir $@)
|
||||||
cp $< $@
|
cp $< $@
|
||||||
|
|
||||||
# Example usage:
|
# Example usage:
|
||||||
# make debug-java_files
|
# make debug-java_files
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ async(); message(S,W,"liftReceiver"); sync();
|
||||||
active(S);
|
active(S);
|
||||||
message(W,S,"setDialTone()");
|
message(W,S,"setDialTone()");
|
||||||
async(); message(S,W,"*dialDigit(d)"); sync();
|
async(); message(S,W,"*dialDigit(d)"); sync();
|
||||||
lconstraint(W,"{dialing.executionTime < 30s}");
|
lconstraint(W,"{dialing.executionTime < 30s}");
|
||||||
active(W);
|
active(W);
|
||||||
message(W,W,"routeCalls(s,n)");
|
message(W,W,"routeCalls(s,n)");
|
||||||
inactive(W);
|
inactive(W);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue