Changeset 4906
- Timestamp:
- 11/22/10 18:55:13 (14 years ago)
- Location:
- branches/DataAnalysis.Extensions/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Formatters
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis.Extensions/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Formatters/SymbolicExpressionTreeGraphvizFormatter.cs
r4900 r4906 28 28 29 29 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Formatters { 30 [StorableClass]31 30 [Item("SymbolicExpressionTreeGraphvizFormatter", "Formatter for symbolic expression trees for import into GraphViz documents.")] 32 31 public sealed class SymbolicExpressionTreeGraphvizFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter { 33 [Storable]34 32 public bool Indent { get; set; } 35 33 … … 57 55 }; 58 56 59 60 [StorableConstructor]61 private SymbolicExpressionTreeGraphvizFormatter(bool deserializing) : base(deserializing) { }62 57 public SymbolicExpressionTreeGraphvizFormatter() 63 58 : base("SymbolicExpressionTreeLatexFormatter", "Formatter for symbolic expression trees for import into LaTeX documents.") { -
branches/DataAnalysis.Extensions/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Formatters/SymbolicExpressionTreeLatexFormatter.cs
r4900 r4906 34 34 [Item("SymbolicExpressionTreeLatexFormatter", "Formatter for symbolic expression trees for import into LaTeX documents.")] 35 35 public sealed class SymbolicExpressionTreeLatexFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter { 36 [StorableConstructor]37 private SymbolicExpressionTreeLatexFormatter(bool deserializing) : base(deserializing) { }38 36 public SymbolicExpressionTreeLatexFormatter() 39 37 : base("SymbolicExpressionTreeLatexFormatter", "Formatter for symbolic expression trees for import into LaTeX documents.") { } -
branches/DataAnalysis.Extensions/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Formatters/SymbolicExpressionTreeSmalltalkStringFormatter.cs
r4869 r4906 30 30 31 31 [Item("SymbolicExpressionTreeSmalltalkStringFormatter", "String formatter for string representations of symbolic expression trees in Smalltalk syntax.")] 32 [StorableClass]33 32 public class SymbolicExpressionTreeSmalltalkStringFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter { 34 33 35 [StorableConstructor]36 protected SymbolicExpressionTreeSmalltalkStringFormatter(bool deserializing) : base(deserializing) { }37 34 protected SymbolicExpressionTreeSmalltalkStringFormatter(SymbolicExpressionTreeSmalltalkStringFormatter original, Cloner cloner) : base(original, cloner) { } 38 35 public SymbolicExpressionTreeSmalltalkStringFormatter()
Note: See TracChangeset
for help on using the changeset viewer.