001 package org.kuali.maven.plugins.graph.pojo;
002
003 import java.io.File;
004
005 public class DotContext {
006 public boolean isKeepDotFile() {
007 return keepDotFile;
008 }
009
010 public void setKeepDotFile(boolean keepDotFile) {
011 this.keepDotFile = keepDotFile;
012 }
013
014 String executable = "dot";
015 String type;
016 File dotFile;
017 File graph;
018 boolean keepDotFile;
019
020 public String getExecutable() {
021 return executable;
022 }
023
024 public void setExecutable(String executable) {
025 this.executable = executable;
026 }
027
028 public String getType() {
029 return type;
030 }
031
032 public void setType(String type) {
033 this.type = type;
034 }
035
036 public File getDotFile() {
037 return dotFile;
038 }
039
040 public void setDotFile(File dotFile) {
041 this.dotFile = dotFile;
042 }
043
044 public File getGraph() {
045 return graph;
046 }
047
048 public void setGraph(File graph) {
049 this.graph = graph;
050 }
051 }