emotional developer 썸네일형 리스트형 Plain Old Java Object, POJO http://en.wikipedia.org/wiki/Plain_Old_Java_Object Plain Old Java ObjectFrom Wikipedia, the free encyclopediaJump to: navigation, searchPOJO is an acronym for Plain Old Java Object, and is favoured by advocates of the idea that the simpler the design, the better. The name is used to emphasize that the object in question is not somehow special but an ordinary Java Object, in particular not an EJB.. 더보기 JavaScript OOP. Object Oriented Programming in JavaScript http://mckoss.com/jscript/object.htm 더보기 javascript hell #1 function addGroup() { var groupNameNew = document.all["groupNameNew"]; var categoryNew = document.all["categoryNew"]; var groupTypeNew = document.all["groupTypeNew"]; var openKeyNew = ""; var externalKeyNew = "";if (categoryNew[1].checked) { // 비공개 체크 openKeyNew = "\n"; } else { openKeyNew = ""; }if (groupTypeNew.value =="2") { // groupTypeNew의 값이 2일때 북마크 그룹 externalKeyNew = "\n"; } if (!validat.. 더보기 List인터페이스의 subList 메소드 사용시. subListpublic List subList(int fromIndex, int toIndex)Returns a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive. (If fromIndex and toIndex are equal, the returned list is empty.) The returned list is backed by this list, so non-structural changes in the returned list are reflected in this list, and vice-versa. The returned list supports all of .. 더보기 이전 1 ··· 21 22 23 24 다음