CodeHighright에 Java 코드를 넣어보니..

태터 코드 하이라이트 플러그인 v0.93을 이용해서 Java 코드를 넣어보니 아래와 같이 나오는군요. 빈 라인에 대한 처리를 고칠 수 없을까요?

  1. package com.transnet.framework.common.xmlbean;
  2. public class AccountHistoryContext {
  3.   private String dateFrom;
  4.   private String dateTo;
  5.   private Account account;
  6.   public AccountHistoryContext() {
  7.   }
  8.   public AccountHistoryContext(String adateFrom, String adateTo,
  9.       Account aaccount) {
  10.     dateFrom = adateFrom;
  11.     dateTo = adateTo;
  12.     account = aaccount;
  13.   }
  14.   public AccountHistoryContext(String test) {
  15.     dateFrom = "dateFrom";
  16.     dateTo = "dateTo";
  17.     account = new Account("test");
  18.   }
  19.   public String getDateFrom() {
  20.     return dateFrom;
  21.   }
  22.   public void setDateFrom(String s) {
  23.     dateFrom = s;
  24.   }
  25.   public String getDateTo() {
  26.     return dateTo;
  27.   }
  28.   public void setDateTo(String s) {
  29.     dateTo = s;
  30.   }
  31.   public Account getAccount() {
  32.     return account;
  33.   }
  34.   public void setAccount(Account o) {
  35.     account = o;
  36.   }
  37.   public String toXML() {
  38.     return BeanXMLMapping.toXML(this);
  39.   }
  40.   public static Object fromXML(String xml) {
  41.     return BeanXMLMapping.fromXML(xml,
  42.         AccountHistoryContext.class);
  43.   }
  44. }
 

'Software' 카테고리의 다른 글

MVC architecture in a J2EE application  (0) 2006.09.26
ACE - Object Oriented(OO) Framework  (0) 2006.09.14
CVS/Subversion Resources  (1) 2006.08.31
MOM - xmlBlaster  (0) 2006.08.30
SIP Server from Flextronics Software Sys  (0) 2006.08.26

Posted by BlogZin

Response
,