CodeHighright에 Java 코드를 넣어보니..
- Posted at 2006. 8. 31. 21:16
- Filed under Software
태터 코드 하이라이트 플러그인 v0.93을 이용해서 Java 코드를 넣어보니 아래와 같이 나오는군요. 빈 라인에 대한 처리를 고칠 수 없을까요?
- package com.transnet.framework.common.xmlbean;
- public class AccountHistoryContext {
- private String dateFrom;
- private String dateTo;
- private Account account;
- public AccountHistoryContext() {
- }
- Account aaccount) {
- dateFrom = adateFrom;
- dateTo = adateTo;
- account = aaccount;
- }
- dateFrom = "dateFrom";
- dateTo = "dateTo";
- account = new Account("test");
- }
- return dateFrom;
- }
- dateFrom = s;
- }
- return dateTo;
- }
- dateTo = s;
- }
- public Account getAccount() {
- return account;
- }
- public void setAccount(Account o) {
- account = o;
- }
- return BeanXMLMapping.toXML(this);
- }
- return BeanXMLMapping.fromXML(xml,
- AccountHistoryContext.class);
- }
- }
'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