- Timestamp:
- Jul 14, 2010, 10:51:10 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/fmgVen/src/net/fmg/ven/arac/SinifBildirenLinkedList.java
r11 r22 12 12 13 13 /** 14 * Ýçinde tuttuðu nesne türünü bildiren linked list14 * İçinde tuttuğu nesne türünü bildiren linked list 15 15 * @author Fatih 16 16 */ … … 23 23 */ 24 24 public SinifBildirenLinkedList() { 25 System.out.println("FmgList, normal LinkedList kipinde çal ýþýyor...");25 System.out.println("FmgList, normal LinkedList kipinde çalışıyor..."); 26 26 } 27 27 28 28 /** 29 * içindeki bile þen türü sýnýfýbelirt29 * içindeki bileşen türü sınıfı belirt 30 30 */ 31 31 public SinifBildirenLinkedList(Class nesneSinifi) { 32 32 this.nesneSinifi = nesneSinifi; 33 System.out.println("**Uyar ý-> bileþen alaný verilmeden çözme henüz yapýlmadý, sorgunuz çalýþmayacak");33 System.out.println("**Uyarı-> bileşen alanı verilmeden çözme henüz yapılmadı, sorgunuz çalışmayacak"); 34 34 } 35 35 36 36 /** 37 * içindeki bile þen türü sýnýfý ve o sýnýftaki hangi alana birleþtiðini belirt37 * içindeki bileşen türü sınıfı ve o sınıftaki hangi alana birleştiğini belirt 38 38 */ 39 39 public SinifBildirenLinkedList(Class nesneSinifi, String bagAlani) { … … 50 50 } 51 51 52 //zorlamaya gerek yok, sadece türünü belirlemek çabam ýz52 //zorlamaya gerek yok, sadece türünü belirlemek çabamız 53 53 //public boolean add(E o) { 54 // if (o.getClass()!=nesneSinifi) throw new RuntimeException("Desteklenmeyen bile þen türü!");54 // if (o.getClass()!=nesneSinifi) throw new RuntimeException("Desteklenmeyen bileşen türü!"); 55 55 // return super.add(o); 56 56 //}
Note: See TracChangeset
for help on using the changeset viewer.