1 16 package org.apache.log4j.lf5.viewer.categoryexplorer; 17 18 24 25 27 public class CategoryElement { 28 32 protected String _categoryTitle; 36 37 41 45 public CategoryElement() { 46 super(); 47 } 48 49 public CategoryElement(String title) { 50 _categoryTitle = title; 51 } 52 53 57 public String getTitle() { 58 return (_categoryTitle); 59 } 60 61 public void setTitle(String title) { 62 _categoryTitle = title; 63 } 64 65 69 73 77 } 78 79 80 81 82 83 84 | Popular Tags |