PHP Classes

File: test/ssa/runner/resolver/Pojo.php

Recommend this page to a friend!
  Classes of thomas   SSA   test/ssa/runner/resolver/Pojo.php   Download  
File: test/ssa/runner/resolver/Pojo.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: SSA
Call PHP classes from JavaScript on Web pages
Author: By
Last change:
Date: 9 years ago
Size: 569 bytes
 

Contents

Class file image Download
<?php

namespace ssa\runner\resolver;

/**
 * Description of Pojo
 *
 * @author thomas
 */
class Pojo {
    private
$param;
   
    private
$pojo;
   
    public function
getParam() {
        return
$this->param;
    }
   
/**
     *
     * @param string $param
     */
   
public function setParam($param) {
       
$this->param = $param;
    }


    public function
getPojo() {
        return
$this->pojo;
    }

   
/**
     *
     * @param \ssa\runner\resolver\Pojo $pojo
     */
   
public function setPojo($pojo) {
       
$this->pojo = $pojo;
    }


   
}