Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/22/10 18:55:13 (13 years ago)
Author:
swinkler
Message:

Removed attributes Storable and StorableClass from tree formatters. (#1270)

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  
    2828
    2929namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Formatters {
    30   [StorableClass]
    3130  [Item("SymbolicExpressionTreeGraphvizFormatter", "Formatter for symbolic expression trees for import into GraphViz documents.")]
    3231  public sealed class SymbolicExpressionTreeGraphvizFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter {
    33     [Storable]
    3432    public bool Indent { get; set; }
    3533
     
    5755    };
    5856
    59 
    60     [StorableConstructor]
    61     private SymbolicExpressionTreeGraphvizFormatter(bool deserializing) : base(deserializing) { }
    6257    public SymbolicExpressionTreeGraphvizFormatter()
    6358      : 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  
    3434  [Item("SymbolicExpressionTreeLatexFormatter", "Formatter for symbolic expression trees for import into LaTeX documents.")]
    3535  public sealed class SymbolicExpressionTreeLatexFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter {
    36     [StorableConstructor]
    37     private SymbolicExpressionTreeLatexFormatter(bool deserializing) : base(deserializing) { }
    3836    public SymbolicExpressionTreeLatexFormatter()
    3937      : 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  
    3030
    3131  [Item("SymbolicExpressionTreeSmalltalkStringFormatter", "String formatter for string representations of symbolic expression trees in Smalltalk syntax.")]
    32   [StorableClass]
    3332  public class SymbolicExpressionTreeSmalltalkStringFormatter : NamedItem, ISymbolicExpressionTreeStringFormatter {
    3433
    35     [StorableConstructor]
    36     protected SymbolicExpressionTreeSmalltalkStringFormatter(bool deserializing) : base(deserializing) { }
    3734    protected SymbolicExpressionTreeSmalltalkStringFormatter(SymbolicExpressionTreeSmalltalkStringFormatter original, Cloner cloner) : base(original, cloner) { }
    3835    public SymbolicExpressionTreeSmalltalkStringFormatter()
Note: See TracChangeset for help on using the changeset viewer.