]> git.llucax.com Git - mecon/samurai.git/blob - doc/apidoc/latex/classSAMURAI__Sistema_a28_cgraph.eps
Agrego documentacion funcional del Myrna. Agrego un permiso general de acceso a las...
[mecon/samurai.git] / doc / apidoc / latex / classSAMURAI__Sistema_a28_cgraph.eps
1 %!PS-Adobe-2.0
2 %%Creator: dot version 1.8.9 (Wed Oct  2 09:41:21 MDT 2002)
3 %%For: (martin) ,,,
4 %%Title: G
5 %%Pages: (atend)
6 %%BoundingBox: 35 35 1445 173
7 %%EndComments
8 save
9 %%BeginProlog
10 /DotDict 200 dict def
11 DotDict begin
12
13 /setupLatin1 {
14 mark
15 /EncodingVector 256 array def
16  EncodingVector 0
17
18 ISOLatin1Encoding 0 255 getinterval putinterval
19
20 EncodingVector
21   dup 306 /AE
22   dup 301 /Aacute
23   dup 302 /Acircumflex
24   dup 304 /Adieresis
25   dup 300 /Agrave
26   dup 305 /Aring
27   dup 303 /Atilde
28   dup 307 /Ccedilla
29   dup 311 /Eacute
30   dup 312 /Ecircumflex
31   dup 313 /Edieresis
32   dup 310 /Egrave
33   dup 315 /Iacute
34   dup 316 /Icircumflex
35   dup 317 /Idieresis
36   dup 314 /Igrave
37   dup 334 /Udieresis
38   dup 335 /Yacute
39   dup 376 /thorn
40   dup 337 /germandbls
41   dup 341 /aacute
42   dup 342 /acircumflex
43   dup 344 /adieresis
44   dup 346 /ae
45   dup 340 /agrave
46   dup 345 /aring
47   dup 347 /ccedilla
48   dup 351 /eacute
49   dup 352 /ecircumflex
50   dup 353 /edieresis
51   dup 350 /egrave
52   dup 355 /iacute
53   dup 356 /icircumflex
54   dup 357 /idieresis
55   dup 354 /igrave
56   dup 360 /dcroat
57   dup 361 /ntilde
58   dup 363 /oacute
59   dup 364 /ocircumflex
60   dup 366 /odieresis
61   dup 362 /ograve
62   dup 365 /otilde
63   dup 370 /oslash
64   dup 372 /uacute
65   dup 373 /ucircumflex
66   dup 374 /udieresis
67   dup 371 /ugrave
68   dup 375 /yacute
69   dup 377 /ydieresis  
70
71 % Set up ISO Latin 1 character encoding
72 /starnetISO {
73         dup dup findfont dup length dict begin
74         { 1 index /FID ne { def }{ pop pop } ifelse
75         } forall
76         /Encoding EncodingVector def
77         currentdict end definefont
78 } def
79 /Times-Roman starnetISO def
80 /Times-Italic starnetISO def
81 /Times-Bold starnetISO def
82 /Times-BoldItalic starnetISO def
83 /Helvetica starnetISO def
84 /Helvetica-Oblique starnetISO def
85 /Helvetica-Bold starnetISO def
86 /Helvetica-BoldOblique starnetISO def
87 /Courier starnetISO def
88 /Courier-Oblique starnetISO def
89 /Courier-Bold starnetISO def
90 /Courier-BoldOblique starnetISO def
91 cleartomark
92 } bind def
93
94 %%BeginResource: procset
95 /coord-font-family /Times-Roman def
96 /default-font-family /Times-Roman def
97 /coordfont coord-font-family findfont 8 scalefont def
98
99 /InvScaleFactor 1.0 def
100 /set_scale {
101         dup 1 exch div /InvScaleFactor exch def
102         dup scale
103 } bind def
104
105 % styles
106 /solid { [] 0 setdash } bind def
107 /dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
108 /dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
109 /invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
110 /bold { 2 setlinewidth } bind def
111 /filled { } bind def
112 /unfilled { } bind def
113 /rounded { } bind def
114 /diagonals { } bind def
115
116 % hooks for setting color 
117 /nodecolor { sethsbcolor } bind def
118 /edgecolor { sethsbcolor } bind def
119 /graphcolor { sethsbcolor } bind def
120 /nopcolor {pop pop pop} bind def
121
122 /beginpage {    % i j npages
123         /npages exch def
124         /j exch def
125         /i exch def
126         /str 10 string def
127         npages 1 gt {
128                 gsave
129                         coordfont setfont
130                         0 0 moveto
131                         (\() show i str cvs show (,) show j str cvs show (\)) show
132                 grestore
133         } if
134 } bind def
135
136 /set_font {
137         findfont exch
138         scalefont setfont
139 } def
140
141 % draw aligned label in bounding box aligned to current point
142 /alignedtext {                  % width adj text
143         /text exch def
144         /adj exch def
145         /width exch def
146         gsave
147                 width 0 gt {
148                         text stringwidth pop adj mul 0 rmoveto
149                 } if
150                 [] 0 setdash
151                 text show
152         grestore
153 } def
154
155 /boxprim {                              % xcorner ycorner xsize ysize
156                 4 2 roll
157                 moveto
158                 2 copy
159                 exch 0 rlineto
160                 0 exch rlineto
161                 pop neg 0 rlineto
162                 closepath
163 } bind def
164
165 /ellipse_path {
166         /ry exch def
167         /rx exch def
168         /y exch def
169         /x exch def
170         matrix currentmatrix
171         newpath
172         x y translate
173         rx ry scale
174         0 0 1 0 360 arc
175         setmatrix
176 } bind def
177
178 /endpage { showpage } bind def
179
180 /layercolorseq
181         [       % layer color sequence - darkest to lightest
182                 [0 0 0]
183                 [.2 .8 .8]
184                 [.4 .8 .8]
185                 [.6 .8 .8]
186                 [.8 .8 .8]
187         ]
188 def
189
190 /setlayer {/maxlayer exch def /curlayer exch def
191         layercolorseq curlayer get
192         aload pop sethsbcolor
193         /nodecolor {nopcolor} def
194         /edgecolor {nopcolor} def
195         /graphcolor {nopcolor} def
196 } bind def
197
198 /onlayer { curlayer ne {invis} if } def
199
200 /onlayers {
201         /myupper exch def
202         /mylower exch def
203         curlayer mylower lt
204         curlayer myupper gt
205         or
206         {invis} if
207 } def
208
209 /curlayer 0 def
210
211 %%EndResource
212 %%EndProlog
213 %%BeginSetup
214 14 default-font-family set_font
215 1 setmiterlimit
216 % /arrowlength 10 def
217 % /arrowwidth 5 def
218
219 % make sure pdfmark is harmless for PS-interpreters other than Distiller
220 /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
221 % make '<<' and '>>' safe on PS Level 1 devices
222 /languagelevel where {pop languagelevel}{1} ifelse
223 2 lt {
224     userdict (<<) cvn ([) cvn load put
225     userdict (>>) cvn ([) cvn load put
226 } if
227
228 %%EndSetup
229 %%Page: 1 1
230 %%PageBoundingBox: 36 36 1445 173
231 %%PageOrientation: Portrait
232 gsave
233 35 35 1410 138 boxprim clip newpath
234 36 36 translate
235 0 0 1 beginpage
236 0 0 translate 0 rotate
237 0.000 0.000 0.000 graphcolor
238 10.00 /Helvetica set_font
239
240 %       Node167
241 gsave 10 dict begin
242 filled
243 0.000 0.000 1.000 nodecolor
244 0.000 0.000 0.000 nodecolor
245 newpath 595 112 moveto
246 802 112 lineto
247 802 127 lineto
248 595 127 lineto
249 closepath
250 fill
251 0.000 0.000 1.000 nodecolor
252 newpath 595 112 moveto
253 802 112 lineto
254 802 127 lineto
255 595 127 lineto
256 closepath
257 stroke
258 gsave 10 dict begin
259 698 115 moveto 197 -0.5 (SAMURAI_Sistema::guardarAsociacion) alignedtext
260 end grestore
261 end grestore
262
263 %       Node168
264 [ /Rect [ 377 61 579 75 ]
265   /Border [ 0 0 0 ]
266   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a31) >>
267   /Subtype /Link
268 /ANN pdfmark
269 gsave 10 dict begin
270 newpath 377 60 moveto
271 579 60 lineto
272 579 75 lineto
273 377 75 lineto
274 closepath
275 stroke
276 gsave 10 dict begin
277 478 63 moveto 192 -0.5 (SAMURAI_Sistema::_existeAsociacion) alignedtext
278 end grestore
279 end grestore
280
281 %       Node167 -> Node168
282 gsave 10 dict begin
283 solid
284 0.667 0.776 0.439 edgecolor
285 newpath 666 112 moveto
286 627 103 562 87 520 78 curveto
287 stroke
288 gsave 10 dict begin
289 solid
290 0.667 0.776 0.439 edgecolor
291 newpath 520 76 moveto
292 510 76 lineto
293 519 80 lineto
294 closepath
295 fill
296 0.667 0.776 0.439 edgecolor
297 end grestore
298 end grestore
299
300 %       Node169
301 [ /Rect [ 597 61 799 75 ]
302   /Border [ 0 0 0 ]
303   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a16) >>
304   /Subtype /Link
305 /ANN pdfmark
306 gsave 10 dict begin
307 newpath 597 60 moveto
308 799 60 lineto
309 799 75 lineto
310 597 75 lineto
311 closepath
312 stroke
313 gsave 10 dict begin
314 698 63 moveto 192 -0.5 (SAMURAI_Sistema::_obtenerDatosDb) alignedtext
315 end grestore
316 end grestore
317
318 %       Node167 -> Node169
319 gsave 10 dict begin
320 solid
321 0.667 0.776 0.439 edgecolor
322 newpath 698 112 moveto
323 698 105 698 94 698 85 curveto
324 stroke
325 gsave 10 dict begin
326 solid
327 0.667 0.776 0.439 edgecolor
328 newpath 701 86 moveto
329 698 76 lineto
330 696 86 lineto
331 closepath
332 fill
333 0.667 0.776 0.439 edgecolor
334 end grestore
335 end grestore
336
337 %       Node177
338 [ /Rect [ 817 61 1007 75 ]
339   /Border [ 0 0 0 ]
340   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a18) >>
341   /Subtype /Link
342 /ANN pdfmark
343 gsave 10 dict begin
344 newpath 817 60 moveto
345 1008 60 lineto
346 1008 75 lineto
347 817 75 lineto
348 closepath
349 stroke
350 gsave 10 dict begin
351 912 63 moveto 181 -0.5 (SAMURAI_Sistema::getResponsable) alignedtext
352 end grestore
353 end grestore
354
355 %       Node167 -> Node177
356 gsave 10 dict begin
357 solid
358 0.667 0.776 0.439 edgecolor
359 newpath 729 112 moveto
360 766 103 831 87 873 78 curveto
361 stroke
362 gsave 10 dict begin
363 solid
364 0.667 0.776 0.439 edgecolor
365 newpath 872 81 moveto
366 881 76 lineto
367 871 76 lineto
368 closepath
369 fill
370 0.667 0.776 0.439 edgecolor
371 end grestore
372 end grestore
373
374 %       Node170
375 [ /Rect [ 0 9 170 23 ]
376   /Border [ 0 0 0 ]
377   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a15) >>
378   /Subtype /Link
379 /ANN pdfmark
380 gsave 10 dict begin
381 newpath 0 8 moveto
382 171 8 lineto
383 171 23 lineto
384 0 23 lineto
385 closepath
386 stroke
387 gsave 10 dict begin
388 85 11 moveto 161 -0.5 (SAMURAI_Sistema::setContacto) alignedtext
389 end grestore
390 end grestore
391
392 %       Node169 -> Node170
393 gsave 10 dict begin
394 solid
395 0.667 0.776 0.439 edgecolor
396 newpath 607 60 moveto
397 503 52 328 37 177 24 curveto
398 stroke
399 gsave 10 dict begin
400 solid
401 0.667 0.776 0.439 edgecolor
402 newpath 177 22 moveto
403 167 24 lineto
404 177 27 lineto
405 closepath
406 fill
407 0.667 0.776 0.439 edgecolor
408 end grestore
409 end grestore
410
411 %       Node171
412 [ /Rect [ 188 9 372 23 ]
413   /Border [ 0 0 0 ]
414   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a11) >>
415   /Subtype /Link
416 /ANN pdfmark
417 gsave 10 dict begin
418 newpath 188 8 moveto
419 373 8 lineto
420 373 23 lineto
421 188 23 lineto
422 closepath
423 stroke
424 gsave 10 dict begin
425 280 11 moveto 175 -0.5 (SAMURAI_Sistema::setDescripcion) alignedtext
426 end grestore
427 end grestore
428
429 %       Node169 -> Node171
430 gsave 10 dict begin
431 solid
432 0.667 0.776 0.439 edgecolor
433 newpath 638 60 moveto
434 562 50 430 34 349 25 curveto
435 stroke
436 gsave 10 dict begin
437 solid
438 0.667 0.776 0.439 edgecolor
439 newpath 351 23 moveto
440 341 24 lineto
441 351 28 lineto
442 closepath
443 fill
444 0.667 0.776 0.439 edgecolor
445 end grestore
446 end grestore
447
448 %       Node172
449 [ /Rect [ 390 9 562 23 ]
450   /Border [ 0 0 0 ]
451   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a13) >>
452   /Subtype /Link
453 /ANN pdfmark
454 gsave 10 dict begin
455 newpath 390 8 moveto
456 563 8 lineto
457 563 23 lineto
458 390 23 lineto
459 closepath
460 stroke
461 gsave 10 dict begin
462 476 11 moveto 163 -0.5 (SAMURAI_Sistema::setFechaFin) alignedtext
463 end grestore
464 end grestore
465
466 %       Node169 -> Node172
467 gsave 10 dict begin
468 solid
469 0.667 0.776 0.439 edgecolor
470 newpath 666 60 moveto
471 627 51 561 35 518 26 curveto
472 stroke
473 gsave 10 dict begin
474 solid
475 0.667 0.776 0.439 edgecolor
476 newpath 518 24 moveto
477 508 24 lineto
478 517 28 lineto
479 closepath
480 fill
481 0.667 0.776 0.439 edgecolor
482 end grestore
483 end grestore
484
485 %       Node173
486 [ /Rect [ 580 9 816 23 ]
487   /Border [ 0 0 0 ]
488   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a14) >>
489   /Subtype /Link
490 /ANN pdfmark
491 gsave 10 dict begin
492 newpath 580 8 moveto
493 816 8 lineto
494 816 23 lineto
495 580 23 lineto
496 closepath
497 stroke
498 gsave 10 dict begin
499 698 11 moveto 226 -0.5 (SAMURAI_Sistema::setFechaImplementacion) alignedtext
500 end grestore
501 end grestore
502
503 %       Node169 -> Node173
504 gsave 10 dict begin
505 solid
506 0.667 0.776 0.439 edgecolor
507 newpath 698 60 moveto
508 698 53 698 42 698 33 curveto
509 stroke
510 gsave 10 dict begin
511 solid
512 0.667 0.776 0.439 edgecolor
513 newpath 701 34 moveto
514 698 24 lineto
515 696 34 lineto
516 closepath
517 fill
518 0.667 0.776 0.439 edgecolor
519 end grestore
520 end grestore
521
522 %       Node174
523 [ /Rect [ 834 9 1016 23 ]
524   /Border [ 0 0 0 ]
525   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a12) >>
526   /Subtype /Link
527 /ANN pdfmark
528 gsave 10 dict begin
529 newpath 834 8 moveto
530 1017 8 lineto
531 1017 23 lineto
532 834 23 lineto
533 closepath
534 stroke
535 gsave 10 dict begin
536 925 11 moveto 173 -0.5 (SAMURAI_Sistema::setFechaInicio) alignedtext
537 end grestore
538 end grestore
539
540 %       Node169 -> Node174
541 gsave 10 dict begin
542 solid
543 0.667 0.776 0.439 edgecolor
544 newpath 731 60 moveto
545 771 51 839 35 883 26 curveto
546 stroke
547 gsave 10 dict begin
548 solid
549 0.667 0.776 0.439 edgecolor
550 newpath 883 29 moveto
551 892 24 lineto
552 882 24 lineto
553 closepath
554 fill
555 0.667 0.776 0.439 edgecolor
556 end grestore
557 end grestore
558
559 %       Node175
560 [ /Rect [ 1034 9 1202 23 ]
561   /Border [ 0 0 0 ]
562   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a10) >>
563   /Subtype /Link
564 /ANN pdfmark
565 gsave 10 dict begin
566 newpath 1034 8 moveto
567 1203 8 lineto
568 1203 23 lineto
569 1034 23 lineto
570 closepath
571 stroke
572 gsave 10 dict begin
573 1118 11 moveto 159 -0.5 (SAMURAI_Sistema::setNombre) alignedtext
574 end grestore
575 end grestore
576
577 %       Node169 -> Node175
578 gsave 10 dict begin
579 solid
580 0.667 0.776 0.439 edgecolor
581 newpath 759 60 moveto
582 835 50 967 34 1048 25 curveto
583 stroke
584 gsave 10 dict begin
585 solid
586 0.667 0.776 0.439 edgecolor
587 newpath 1047 28 moveto
588 1057 24 lineto
589 1047 23 lineto
590 closepath
591 fill
592 0.667 0.776 0.439 edgecolor
593 end grestore
594 end grestore
595
596 %       Node176
597 [ /Rect [ 1220 9 1408 23 ]
598   /Border [ 0 0 0 ]
599   /Action << /Subtype /URI /URI ($classSAMURAI__Sistema.html#a19) >>
600   /Subtype /Link
601 /ANN pdfmark
602 gsave 10 dict begin
603 newpath 1220 8 moveto
604 1409 8 lineto
605 1409 23 lineto
606 1220 23 lineto
607 closepath
608 stroke
609 gsave 10 dict begin
610 1314 11 moveto 179 -0.5 (SAMURAI_Sistema::setResponsable) alignedtext
611 end grestore
612 end grestore
613
614 %       Node169 -> Node176
615 gsave 10 dict begin
616 solid
617 0.667 0.776 0.439 edgecolor
618 newpath 786 60 moveto
619 888 52 1064 37 1215 24 curveto
620 stroke
621 gsave 10 dict begin
622 solid
623 0.667 0.776 0.439 edgecolor
624 newpath 1215 27 moveto
625 1225 24 lineto
626 1215 22 lineto
627 closepath
628 fill
629 0.667 0.776 0.439 edgecolor
630 end grestore
631 end grestore
632 endpage
633 grestore
634 %%PageTrailer
635 %%EndPage: 1
636 %%Trailer
637 %%Pages: 1
638 end
639 restore
640 %%EOF