| 123456789101112131415161718192021222324252627 |
- <?php
- namespace KplOpenWfpJmiwareAddWare;
- class Features{
- private $params=array();
- function __construct(){
- $this->params["@type"]="java.util.Map";
- }
-
- private $featureKey;
-
- public function setFeatureKey($featureKey){
- $this->params['featureKey'] = $featureKey;
- }
- public function getFeatureKey(){
- return $this->featureKey;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|