// *****************************************************
// Copyright (c) 2006-2011 iAnywhere Solutions, Inc.
// Portions copyright (c) 2006-2011 Sybase, Inc.
// All rights reserved. All unpublished rights reserved.
// *****************************************************
// This sample code is provided AS IS, without warranty or liability
// of any kind.
//
// You may use, reproduce, modify and distribute this sample code
// without limitation, on the condition that you retain the foregoing
// copyright notice and disclaimer as to the original iAnywhere code.
//
// *********************************************************************
package myapp;
class NameRow {
public NameRow( String nameID, String name ) {
_nameID = nameID;
_name = name;
}
public String getNameID(){
return _nameID;
}
public String getName(){
return _name;
}
public String toString(){
return _name;
}
private String _nameID;
private String _name;
}