1 2 package org.roller.presentation.weblog.formbeans; 3 4 import org.roller.RollerException; 5 import org.roller.pojos.WeblogCategoryData; 6 import org.roller.presentation.forms.WeblogCategoryForm; 7 8 9 12 public class CategoriesForm extends WeblogCategoryForm 13 { 14 private String mParentId = null; 15 private boolean mMoveContents = false; 16 private String mMoveToCategoryId = null; 17 private String [] mSelectedCategories = null; 18 19 public CategoriesForm() 20 { 21 super(); 22 } 23 24 public CategoriesForm( WeblogCategoryData catData, java.util.Locale locale ) throws RollerException 25 { 26 super(catData, locale); 27 } 28 29 public String getParentId() 30 { 31 return mParentId; 32 } 33 34 public void setParentId(String parentId) 35 { 36 mParentId = parentId; 37 } 38 39 41 42 public boolean getMoveContents() { return mMoveContents; } 43 44 45 public void setMoveContents( boolean flag ) { mMoveContents = flag;} 46 47 49 50 public String getMoveToCategoryId() { return mMoveToCategoryId; } 51 52 53 public void setMoveToCategoryId( String id ) { mMoveToCategoryId = id;} 54 55 57 58 public String [] getSelectedCategories() { return mSelectedCategories; } 59 60 61 public void setSelectedCategories( String [] f ) {mSelectedCategories = f;} 62 } 63 64 | Popular Tags |