1 16 package com.blandware.atleap.model.core; 17 18 40 public class ContentDocument extends ContentResource { 41 42 44 47 protected ContentLocale contentLocale; 48 51 protected String charset; 52 53 55 64 public ContentLocale getContentLocale() { 65 return contentLocale; 66 } 67 68 73 public void setContentLocale(ContentLocale contentLocale) { 74 this.contentLocale = contentLocale; 75 } 76 77 86 public String getCharset() { 87 return charset; 88 } 89 90 95 public void setCharset(String charset) { 96 this.charset = charset; 97 } 98 } 99 | Popular Tags |