Coverage Report - org.kuali.student.lum.common.client.lo.RichTextInfoHelper
 
Classes in this File Line Coverage Branch Coverage Complexity
RichTextInfoHelper
0%
0/13
0%
0/2
1.222
RichTextInfoHelper$Properties
0%
0/7
N/A
1.222
 
 1  
 /*
 2  
  * Copyright 2010 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may        obtain a copy of the License at
 7  
  *
 8  
  *         http://www.osedu.org/licenses/ECL-2.0
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.student.lum.common.client.lo;
 17  
 
 18  
 
 19  
 import org.kuali.student.common.assembly.data.Data;
 20  
 import org.kuali.student.common.assembly.helper.PropertyEnum;
 21  
 
 22  
 
 23  
 public class RichTextInfoHelper
 24  
 {
 25  
         private static final long serialVersionUID = 1;
 26  
         
 27  0
         public enum Properties implements PropertyEnum
 28  
         {
 29  0
                 PLAIN ("plain"),
 30  0
                 FORMATTED ("formatted");
 31  
                 
 32  
                 private final String key;
 33  
                 
 34  
                 private Properties (final String key)
 35  0
                 {
 36  0
                         this.key = key;
 37  0
                 }
 38  
                 
 39  
                 @Override
 40  
                 public String getKey ()
 41  
                 {
 42  0
                         return this.key;
 43  
                 }
 44  
         }
 45  
         private Data data;
 46  
         
 47  
         private RichTextInfoHelper (Data data)
 48  0
         {
 49  0
                 this.data = data;
 50  0
         }
 51  
         
 52  
         public static RichTextInfoHelper wrap (Data data)
 53  
         {
 54  0
                 if (data == null)
 55  
                 {
 56  0
                          return null;
 57  
                 }
 58  0
                 return new RichTextInfoHelper (data);
 59  
         }
 60  
         
 61  
         public Data getData ()
 62  
         {
 63  0
                 return data;
 64  
         }
 65  
         
 66  
         
 67  
         public void setPlain (String value)
 68  
         {
 69  0
                 data.set (Properties.PLAIN.getKey (), value);
 70  0
         }
 71  
         
 72  
         
 73  
         public String getPlain ()
 74  
         {
 75  0
                 return (String) data.get (Properties.PLAIN.getKey ());
 76  
         }
 77  
         
 78  
         
 79  
         public void setFormatted (String value)
 80  
         {
 81  0
                 data.set (Properties.FORMATTED.getKey (), value);
 82  0
         }
 83  
         
 84  
         
 85  
         public String getFormatted ()
 86  
         {
 87  0
                 return (String) data.get (Properties.FORMATTED.getKey ());
 88  
         }
 89  
         
 90  
 }
 91