示例#1
0
文件: Tags.cs 项目: svejdo1/niffty
        /** Returns a copy of this Tags, with logicalPlacement
         *  changed to the given value, which may be null if the tag
         *  is not present.
         */
        public Tags cloneWithLogicalPlacement(LogicalPlacement logicalPlacement)
        {
            Tags tags = (Tags)clone();

            tags._logicalPlacement = logicalPlacement;
            return(tags);
        }
示例#2
0
文件: Tags.cs 项目: svejdo1/niffty
 /** Returns a copy of this Tags, with logicalPlacement
  *  changed to the given value, which may be null if the tag
  *  is not present.
  */
 public Tags cloneWithLogicalPlacement(LogicalPlacement logicalPlacement)
 {
     Tags tags = (Tags)clone();
       tags._logicalPlacement = logicalPlacement;
       return tags;
 }