001    package railo.runtime.dump;
002    
003    // FUTURE add to loader
004    
005    public class DumpTablePro extends DumpTable {
006    
007    
008            private String type;
009            private String id;
010            private String ref;
011    
012            public DumpTablePro(String type,String highLightColor, String normalColor,String borderColor) {
013                    super(highLightColor, normalColor, borderColor);
014                    this.type=type;
015            }
016            
017            public DumpTablePro(String type,String highLightColor, String normalColor,String borderColor, String fontColor) {
018                    super(highLightColor, normalColor, borderColor, fontColor);
019                    this.type=type;
020            }
021    
022            /**
023             * @return the type
024             */
025            public String getType() {
026                    return type;
027            }
028    
029            public void setId(String id) {
030                    this.id=id;
031            }
032    
033            public String getId() {
034                    return id;
035            }
036    
037            public void setRef(String ref) {
038                    this.ref=ref;
039            }
040            public String getRef() {
041                    return ref;
042            }
043    
044    
045    }