Advertisement
k-joseph

Untitled

Jun 25th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. /**
  2. * Version 1.0 (the "License"); you may not use this file except in
  3. * compliance with the License. You may obtain a copy of the License at
  4. * http://license.openmrs.org
  5. *
  6. * Software distributed under the License is distributed on an "AS IS"
  7. * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
  8. * License for the specific language governing rights and limitations
  9. * under the License.
  10. *
  11. * Copyright (C) OpenMRS, LLC. All Rights Reserved.
  12. */
  13. package org.openmrs.module.chartsearch;
  14.  
  15. public class SearchCategory {
  16.  
  17. private String[] categories;
  18.  
  19. public String[] getCategories() {
  20. return categories;
  21. }
  22.  
  23. public void setCategories(String[] categories) {
  24. this.categories = categories;
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement