Сегодня 20 января, понедельник ГлавнаяНовостиО проектеЛичный кабинетПомощьКонтакты Сделать стартовойКарта сайтаНаписать администрации
Поиск по сайту
 
Ваше мнение
Какой рейтинг вас больше интересует?
 
 
 
 
 
Проголосовало: 7278
Кнопка
BlogRider.ru - Каталог блогов Рунета
получить код
Yarixxx
Yarixxx
Голосов: 1
Адрес блога: http://y3x.ru
Добавлен: 2010-12-17 00:20:50 блограйдером yarix
 

Java Set and it’s implementations

2015-05-08 22:49:30 (читать в оригинале)

One of the useful interfaces that derives from Collection is Set. The main feature of Set is that it cannot contain duplicates. Like List interface Set can store objects. In order to detect duplicates it uses hashcode and equals. Let’s play with some extensions and implementations of this interface. HashSet If we will compare all […]

How to sort Java objects

2015-05-07 22:17:13 (читать в оригинале)

There is an interesting topic regarding Java Collections. It’s name is sorting. We can sort a List using two ways: Comparable Method Collections.sort allows to sort List’s that contains elements which implements Comparable interface. public void sortIt(List personList) { Collections.sort(personList); } it is important to keep in mind that Person should implement Comparable interface. Without […]

How to use generate-with in GWT

2015-05-05 21:23:52 (читать в оригинале)

Construction generate-with is pretty simple. First of all we need to add special declaration to *.gwt.xml <generate-with class="com.myApp.AnimalGenerator"> <when-type-assignable class="com.myApp.Animal" /> </generate-with> Here Animal is a interface: public interface Animal { public String name(); } AnimalGenerator extends magic Generator in order to make things happen. public class AnimalGenerator extends Generator { private static final String […]

How replace-with works in GWT

2015-05-04 21:15:29 (читать в оригинале)

There is a very handy feature in GWT that makes it possible to choose which implementation of interface to use. It’s name is Deferred Binding. The working example could be very simple. We will create a interface, but it could be a class. public interface Animal { public String getName(); } and several implementations. One […]

GWT: How to use @UiTemplate

2015-05-03 20:50:16 (читать в оригинале)

Another useful GWT annotation is @UiTemplate. It can be used in theme switching. Originally any GWT Widget can have only one *.ui.xml template. With @UiTemplate there could be two or more templates. Lets create two ui.xml files: 1. CustomWidget1.ui.xml <ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui'> <g:HTMLPanel> <g:Label text="CustomWidget1" /> </g:HTMLPanel> </ui:UiBinder> 2. CustomWidget2.ui.xml <ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui'> <g:HTMLPanel> <g:Label […]


Страницы: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ... 

 


Самый-самый блог
Блогер Рыбалка
Рыбалка
по среднему баллу (5.00) в категории «Спорт»
Изменения рейтинга
Категория «Музыка»
Взлеты Топ 5
+382
399
Follow_through
+328
331
שימותו הקנאים
+320
334
Tomas50
+317
357
krodico
+307
359
Ланин Сергей
Падения Топ 5


Загрузка...Загрузка...
BlogRider.ru не имеет отношения к публикуемым в записях блогов материалам. Все записи
взяты из открытых общедоступных источников и являются собственностью их авторов.