PetTypeEditor.java
资源名称:petclinic.rar [点击查看]
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package org.springframework.samples.petclinic.web;
- import java.beans.PropertyEditorSupport;
- import org.springframework.samples.petclinic.Clinic;
- import org.springframework.samples.petclinic.PetType;
- /**
- * @author Mark Fisher
- * @author Juergen Hoeller
- */
- public class PetTypeEditor extends PropertyEditorSupport {
- private final Clinic clinic;
- public PetTypeEditor(Clinic clinic) {
- this.clinic = clinic;
- }
- @Override
- public void setAsText(String text) throws IllegalArgumentException {
- for (PetType type : this.clinic.getPetTypes()) {
- if (type.getName().equals(text)) {
- setValue(type);
- }
- }
- }
- }