1 20 21 package org.apache.directory.ldapstudio.schemas.model; 22 23 24 29 public class Syntax 30 { 31 private String name; 32 private String oid; 33 private boolean humanReadable; 34 35 36 42 public Syntax( String name, String oid, boolean humanReadable ) 43 { 44 this.name = name; 45 this.oid = oid; 46 this.humanReadable = humanReadable; 47 } 48 49 50 public boolean isHumanReadable() 51 { 52 return humanReadable; 53 } 54 55 56 public void setHumanReadable( boolean humanReadable ) 57 { 58 this.humanReadable = humanReadable; 59 } 60 61 62 public String getName() 63 { 64 return name; 65 } 66 67 68 public void setName( String name ) 69 { 70 this.name = name; 71 } 72 73 74 public String getOid() 75 { 76 return oid; 77 } 78 79 80 public void setOid( String oid ) 81 { 82 this.oid = oid; 83 } 84 } 85 | Popular Tags |