1 25 package org.jrobin.graph; 26 27 import org.jrobin.core.RrdException; 28 import org.jrobin.core.XmlWriter; 29 30 36 class Title extends Comment 37 { 38 46 Title( String text ) throws RrdException 47 { 48 this.text = text; 49 lfToken = Comment.TKN_ACF; 50 super.parseComment(); 51 } 52 53 void exportXmlTemplate(XmlWriter xml) { 54 xml.writeTag("title", getText()); 55 } 56 } 57 | Popular Tags |