Show
Ignore:
Timestamp:
11/11/07 21:43:04 (1 year ago)
Author:
mikey
Message:

whitespace fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/XJConf/Tag.php

    r115 r121  
    1515{ 
    1616    /** 
    17         * Get the name of the tag 
    18        
    19         * @return  name of the tag 
    20         */ 
    21        public function getName(); 
     17    * Get the name of the tag 
     18   
     19    * @return  name of the tag 
     20    */ 
     21    public function getName(); 
    2222 
    23        /** 
    24         * Get the key under which the value will be stored 
    25        
    26         * @return  string 
    27         */ 
    28        public function getKey(); 
     23    /** 
     24    * Get the key under which the value will be stored 
     25   
     26    * @return  string 
     27    */ 
     28    public function getKey(); 
    2929 
    30        /** 
    31         * Add text data 
    32        
    33         * @param   string  $buf 
    34         * @return  int     new length of data 
    35         */ 
    36        public function addData($buf); 
     30    /** 
     31    * Add text data 
     32   
     33    * @param   string  $buf 
     34    * @return  int     new length of data 
     35    */ 
     36    public function addData($buf); 
    3737 
    38        /** 
    39         * Get the character data of the tag 
    40        
    41         * @return   character data 
    42         */ 
    43        public function getData(); 
     38    /** 
     39    * Get the character data of the tag 
     40   
     41    * @return   character data 
     42    */ 
     43    public function getData(); 
    4444 
    45        /** 
    46         * Check, whether the tag has a certain attribute 
    47        
    48         * @param   string   $name 
    49         * @return  boolean 
    50         */ 
    51        public function hasAttribute($name); 
     45    /** 
     46    * Check, whether the tag has a certain attribute 
     47   
     48    * @param   string   $name 
     49    * @return  boolean 
     50    */ 
     51    public function hasAttribute($name); 
    5252 
    53        /** 
    54         * get an attribute 
    55        
    56         * @param   string  $name  name of the attribute 
    57         * @return  string  value of the attribute 
    58         */ 
    59        public function getAttribute($name); 
     53    /** 
     54    * get an attribute 
     55   
     56    * @param   string  $name  name of the attribute 
     57    * @return  string  value of the attribute 
     58    */ 
     59    public function getAttribute($name); 
    6060 
    61        /** 
    62         * get all attributes 
    63        
    64         * @return  array 
    65         */ 
    66        public function getAttributes(); 
     61    /** 
     62    * get all attributes 
     63   
     64    * @return  array 
     65    */ 
     66    public function getAttributes(); 
    6767 
    68        /** 
     68    /** 
    6969     * Add a new child to this tag. 
    7070     * 
     
    7272     * @return   int    number of childs added 
    7373     */ 
    74        public function addChild(Tag $child); 
     74    public function addChild(Tag $child); 
    7575 
    76        /** 
    77         * Get the child with a specific name 
    78        
    79         * @param   string  $name 
    80         * @return  Tag 
    81         */ 
    82        public function getChild($name); 
     76    /** 
     77    * Get the child with a specific name 
     78   
     79    * @param   string  $name 
     80    * @return  Tag 
     81    */ 
     82    public function getChild($name); 
    8383 
    84        /** 
    85         * Get all children of the tag 
    86        
    87         * @return  array 
    88         */ 
    89        public function getChildren(); 
     84    /** 
     85    * Get all children of the tag 
     86   
     87    * @return  array 
     88    */ 
     89    public function getChildren(); 
    9090 
    91        /** 
     91    /** 
    9292     * Set the content (overrides the character data) 
    9393     * 
    9494     * @param  mixed  $content 
    9595     */ 
    96        public function setContent($content); 
     96    public function setContent($content); 
    9797 
    98        /** 
    99         * Get the content 
    100        
    101         * @return  mixed 
    102         */ 
    103        public function getContent(); 
     98    /** 
     99    * Get the content 
     100   
     101    * @return  mixed 
     102    */ 
     103    public function getContent(); 
    104104 
    105        /** 
    106         * Fetch the value 
    107        
    108         * @return      mixed  the value of the tag 
    109         */ 
    110        public function getConvertedValue(); 
     105    /** 
     106    * Fetch the value 
     107   
     108     * @return    mixed  the value of the tag 
     109    */ 
     110    public function getConvertedValue(); 
    111111 
    112        /** 
    113         * Get the type of the value 
    114        
    115         * @param   Tag     $tag 
    116         * @return  string 
    117         */ 
    118        public function getValueType(Tag $tag); 
     112    /** 
     113    * Get the type of the value 
     114   
     115    * @param   Tag     $tag 
     116    * @return  string 
     117    */ 
     118    public function getValueType(Tag $tag); 
    119119 
    120        /** 
    121         * Get the setter method 
    122        
    123         * @return  string 
    124         */ 
    125        public function getSetterMethod(); 
     120    /** 
     121    * Get the setter method 
     122   
     123    * @return  string 
     124    */ 
     125    public function getSetterMethod(); 
    126126 
    127        /** 
    128         * returns the definition for this tag 
    129        
    130         * @return  Definition 
    131         */ 
    132        public function getDefinition(); 
     127    /** 
     128    * returns the definition for this tag 
     129   
     130    * @return  Definition 
     131    */ 
     132    public function getDefinition(); 
    133133 
    134        /** 
    135         * Checks, whether the tag supports indexed children 
    136        
    137         * @return  boolean 
    138         */ 
    139        public function supportsIndexedChildren(); 
     134    /** 
     135    * Checks, whether the tag supports indexed children 
     136   
     137    * @return  boolean 
     138    */ 
     139    public function supportsIndexedChildren(); 
    140140} 
    141141?>