私はJavaが初めてです。テスト データで Java オブジェクトを作成し、リモート クラスからオブジェクトにアクセスしたいと考えています。このオブジェクトを作成しました:
public class TestAgentData
{
public TestAgentDataObj tad;
public class TestAgentDataObj
{
public int agentId = 1234;
public String agentName = "AgentName";
public String description = "AgentDscription";
public TestAgentDataObj(int agentId, String agentName, String description)
{
this.agentId = agentId;
this.agentName = agentName;
this.description = description;
}
public int getAgentId()
{
return agentId;
}
public void setAgentId(int agentId)
{
this.agentId = agentId;
}
public String getAgentName()
{
return agentName;
}
public void setAgentName(String agentName)
{
this.agentName = agentName;
}
public String getDescription()
{
return description;
}
public void setDescription(String description)
{
this.description = description;
}
}
public TestAgentDataObj getTad()
{
return tad;
}
public void setTad(TestAgentDataObj tad)
{
this.tad = tad;
}
}
リモートクラスからオブジェクトにアクセスしようとしました:
Object eded = new TestAgentData.getTad();
しかし、Netbeans でエラーが発生します。Java オブジェクトのデータにアクセスする適切な方法を教えてください。