vstup/kočka-a-pes-oop.dot
author František Kučera <franta-hg@frantovo.cz>
Thu, 05 Jul 2012 14:27:01 +0200
changeset 106 ae484a54d7fb
parent 65 0b00c324e644
permissions -rw-r--r--
#20 Skriptování: Podpora spouštění skriptů ze šablon (ne jen z dokumentů), oprava chyby (URI stránky bylo null),
ale při přiřazování výstupu skriptu do proměnné nejde použít disable-output-escaping="yes" resp. vloží se escapovaný výstup
(jiná makra lze přes proměnné procpat a používat je tak v jiných makrech).

viz http://www.stylusstudio.com/xsllist/200105/post40940.html
franta-hg@52
     1
digraph G {	
franta-hg@52
     2
	bgcolor="transparent";
franta-hg@52
     3
	
franta-hg@52
     4
	
franta-hg@52
     5
	// Třídy:
franta-hg@65
     6
	node	[shape = "record"];
franta-hg@52
     7
	Pes		[label = "{Pes|+ kouše : boolean\l|+ štěkej() : void\l}"];
franta-hg@52
     8
	Kočka	[label = "{Kočka|+ spí : boolean\l|+ mňoukej() : void\l}"];
franta-hg@52
     9
	Zvíře	[label = "{Zvíře|+ jméno : string\l+ věk : int\l|+ běhej() : void\l}"];
franta-hg@52
    10
	
franta-hg@52
    11
	
franta-hg@52
    12
	// Dědičnost:
franta-hg@65
    13
	edge	[arrowhead = "empty"];
franta-hg@52
    14
	
franta-hg@65
    15
	Pes		->	Zvíře;
franta-hg@65
    16
	Kočka	->	Zvíře;
franta-hg@52
    17
}
franta-hg@52
    18