You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
584 B
27 lines
584 B
package com.fr.design.data; |
|
|
|
public class NameChangeBean { |
|
private String oldName; |
|
private String changedName; |
|
|
|
public NameChangeBean(String oldName, String changedName) { |
|
this.oldName = oldName; |
|
this.changedName = changedName; |
|
} |
|
|
|
public String getOldName() { |
|
return oldName; |
|
} |
|
|
|
public void setOldName(String oldName) { |
|
this.oldName = oldName; |
|
} |
|
|
|
public String getChangedName() { |
|
return changedName; |
|
} |
|
|
|
public void setChangedName(String changedName) { |
|
this.changedName = changedName; |
|
} |
|
}
|
|
|