Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.virtuosotechnologies.asaph.maingui
Class SongListModel.Item  view SongListModel.Item download SongListModel.Item.java

java.lang.Object
  extended bycom.virtuosotechnologies.lib.base.LinkedObject
      extended bycom.virtuosotechnologies.asaph.maingui.SongListModel.Item
Enclosing class:
SongListModel

class SongListModel.Item
extends com.virtuosotechnologies.lib.base.LinkedObject

JList element type


Field Summary
private  java.text.CollationKey collationKey_
           
private  java.lang.String name_
           
private  com.virtuosotechnologies.asaph.model.SongID songID_
           
 
Fields inherited from class com.virtuosotechnologies.lib.base.LinkedObject
 
Constructor Summary
private SongListModel.Item(com.virtuosotechnologies.asaph.model.SongID songID)
           
private SongListModel.Item(com.virtuosotechnologies.asaph.model.SongID songID, java.lang.String name)
           
 
Method Summary
 java.text.CollationKey getCollationKey()
           
(package private)  com.virtuosotechnologies.asaph.model.SongID getSongID()
           
private  void setDatabaseErrorName()
           
private  void setName(java.lang.String name)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
private  void update()
           
 
Methods inherited from class com.virtuosotechnologies.lib.base.LinkedObject
getNext, getPrevious, linkThisAfter, linkThisBefore, unlinkThis
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

songID_

private com.virtuosotechnologies.asaph.model.SongID songID_

name_

private java.lang.String name_

collationKey_

private java.text.CollationKey collationKey_
Constructor Detail

SongListModel.Item

private SongListModel.Item(com.virtuosotechnologies.asaph.model.SongID songID)

SongListModel.Item

private SongListModel.Item(com.virtuosotechnologies.asaph.model.SongID songID,
                           java.lang.String name)
Method Detail

update

private void update()

setName

private void setName(java.lang.String name)

setDatabaseErrorName

private void setDatabaseErrorName()

getSongID

com.virtuosotechnologies.asaph.model.SongID getSongID()

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).


getCollationKey

public java.text.CollationKey getCollationKey()