1 package org.opencrx.kernel.generic.cci; 14 15 public class PicturedImpl 16 extends org.openmdx.base.accessor.jmi.spi.RefObject_1 17 implements Pictured { 18 19 public PicturedImpl( 20 org.openmdx.base.accessor.generic.cci.Object_1_0 object, 21 javax.jmi.reflect.RefClass refClass 22 ) { 23 super(object, refClass); 24 } 25 26 public org.opencrx.kernel.document1.cci.Media getPicture( 30 ) { 31 return (org.opencrx.kernel.document1.cci.Media)refGetValue( 32 "org:opencrx:kernel:generic:Pictured:picture" 33 ); 34 } 35 36 public void setPicture( 40 org.opencrx.kernel.document1.cci.Media newValue 41 ) { 42 refSetValue( 43 "org:opencrx:kernel:generic:Pictured:picture", 44 newValue 45 ); 46 } 47 48 public void removePicture ( 52 ) { 53 refRemoveValue( 54 "org:opencrx:kernel:generic:Pictured:picture" 55 ); 56 } 57 public byte[] getPictureContent ( 61 ) { 62 return (byte[])this.refGetValue("pictureContent", 0); 63 } 64 protected void setPictureContent( 68 byte[] newValue 69 ) { 70 refSetValue("org:opencrx:kernel:generic:Pictured:pictureContent", 0, newValue); 71 } 72 73 public String getPictureContentMimeType ( 77 ) { 78 return (String )this.refGetValue("pictureContentMimeType", 0); 79 } 80 protected void setPictureContentMimeType( 84 String newValue 85 ) { 86 refSetValue("org:opencrx:kernel:generic:Pictured:pictureContentMimeType", 0, newValue); 87 } 88 89 public String getPictureContentName ( 93 ) { 94 return (String )this.refGetValue("pictureContentName", 0); 95 } 96 protected void setPictureContentName( 100 String newValue 101 ) { 102 refSetValue("org:opencrx:kernel:generic:Pictured:pictureContentName", 0, newValue); 103 } 104 105 } 109 | Popular Tags |