tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > SOJO > Set Simple Property

Set Simple Property 

SOJO (Simplified Old Java Objects) is a Java framework which converts object graph into a specific structure or representation. This requires the library sojo-1.0.0.jar to be in classpath. The following example shows using PathExecuter.setSimpleProperty() API.

File Name  :  
com/bethecoder/tutorials/sojo/common/Student.java 
   
package com.bethecoder.tutorials.sojo.common;

public class Student {

  private String name;
  private int age;
  private String hobby;

  public Student() {
  }

  public Student(String name, int age, String hobby) {
    super();
    this.name = name;
    this.age = age;
    this.hobby = hobby;
  }

  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }
  public int getAge() {
    return age;
  }
  public void setAge(int age) {
    this.age = age;
  }
  public String getHobby() {
    return hobby;
  }
  public void setHobby(String hobby) {
    this.hobby = hobby;
  }
  
  public String toString() {
    return "Student[name = " + name + ", age = " + age + ", hobby = " + hobby + "]";
  }
}
   

File Name  :  
com/bethecoder/tutorials/sojo/tests/SetSimpleOGN.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.sojo.tests;

import java.io.IOException;

import net.sf.sojo.navigation.PathExecuter;

import com.bethecoder.tutorials.sojo.common.Student;

public class SetSimpleOGN {

  /**
   @param args
   */
  public static void main(String[] argsthrows IOException {
    
    Student student = new Student("Sriram"2"Chess");
    System.out.println(student);
    
    PathExecuter.setSimpleProperty(student, "name""Sriram Kasireddi");
    PathExecuter.setSimpleProperty(student, "age"4);
    System.out.println(student);
  }
}
   

It gives the following output,
Student[name = Sriram, age = 2, hobby = Chess]
Student[name = Sriram Kasireddi, age = 4, hobby = Chess]



 
  


  
bl  br