Add Python demo for showing how to embed Python in Java
[jython-java-sample.git] / src / main / java / com / smartitengineering / demo / jython / test / TestName.java
blob56cca0c1a9b77825a2ec5dea23d9547e2afd4ab6
1 /*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
6 package com.smartitengineering.demo.jython.test;
8 /**
10 * @author imyousuf
12 public class TestName {
13 private String name;
14 private boolean read;
16 public TestName(String name) {
17 this.name = name;
20 public String getName() {
21 return name;
24 public boolean isRead() {
25 return read;
28 public void setRead(boolean read) {
29 this.read = read;