Update 3rd party library
This commit is contained in:
@ -1,15 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public interface PHPExcel_Reader_IReader
|
||||
{
|
||||
PHPExcel reads
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public interface PHPExcel_Reader_IReader
|
||||
{
|
||||
PHPExcel reads
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,15 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public interface PHPExcel_Writer_IWriter
|
||||
{
|
||||
PHPExcel writes
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public interface PHPExcel_Writer_IWriter
|
||||
{
|
||||
PHPExcel writes
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,40 +1,40 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel
|
||||
{
|
||||
/// <remarks></remarks>
|
||||
public Worksheet Worksheets
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public class PHPExcel_Writer_PDF : PHPExcel_Writer_IWriter
|
||||
{
|
||||
#region PHPExcel_Writer_IWriter Members
|
||||
|
||||
public PHPExcel writes
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel
|
||||
{
|
||||
/// <remarks></remarks>
|
||||
public Worksheet Worksheets
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public class PHPExcel_Writer_PDF : PHPExcel_Writer_IWriter
|
||||
{
|
||||
#region PHPExcel_Writer_IWriter Members
|
||||
|
||||
public PHPExcel writes
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
@ -1,41 +1,41 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel_IOFactory
|
||||
{
|
||||
public PHPExcel_Reader_IReader createsReader
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public PHPExcel_Writer_IWriter createsWriter
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public PHPExcel_Writer_IWriter createWriter()
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public PHPExcel_Reader_IReader createReader()
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel_IOFactory
|
||||
{
|
||||
public PHPExcel_Reader_IReader createsReader
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public PHPExcel_Writer_IWriter createsWriter
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public PHPExcel_Writer_IWriter createWriter()
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public PHPExcel_Reader_IReader createReader()
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,25 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel_Reader_Excel2007 : PHPExcel_Reader_IReader
|
||||
{
|
||||
#region IReader Members
|
||||
|
||||
public PHPExcel reads
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel_Reader_Excel2007 : PHPExcel_Reader_IReader
|
||||
{
|
||||
#region IReader Members
|
||||
|
||||
public PHPExcel reads
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
@ -1,63 +1,63 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel_Reader_Excel5 : PHPExcel_Reader_IReader
|
||||
{
|
||||
#region PHPExcel_Writer_IReader Members
|
||||
|
||||
public PHPExcel reads
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PHPExcel_Reader_Excel2003XML : PHPExcel_Reader_IReader
|
||||
{
|
||||
#region PHPExcel_Writer_IReader Members
|
||||
|
||||
public PHPExcel reads
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PHPExcel_Reader_SYLK : PHPExcel_Reader_IReader
|
||||
{
|
||||
#region PHPExcel_Writer_IReader Members
|
||||
|
||||
public PHPExcel reads
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel_Reader_Excel5 : PHPExcel_Reader_IReader
|
||||
{
|
||||
#region PHPExcel_Writer_IReader Members
|
||||
|
||||
public PHPExcel reads
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PHPExcel_Reader_Excel2003XML : PHPExcel_Reader_IReader
|
||||
{
|
||||
#region PHPExcel_Writer_IReader Members
|
||||
|
||||
public PHPExcel reads
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PHPExcel_Reader_SYLK : PHPExcel_Reader_IReader
|
||||
{
|
||||
#region PHPExcel_Writer_IReader Members
|
||||
|
||||
public PHPExcel reads
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
@ -1,44 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel_Reader_Serialized : PHPExcel_Reader_IReader
|
||||
{
|
||||
#region IReader Members
|
||||
|
||||
public PHPExcel reads
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PHPExcel_Reader_CSV : PHPExcel_Reader_IReader
|
||||
{
|
||||
#region IReader Members
|
||||
|
||||
public PHPExcel reads
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel_Reader_Serialized : PHPExcel_Reader_IReader
|
||||
{
|
||||
#region IReader Members
|
||||
|
||||
public PHPExcel reads
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PHPExcel_Reader_CSV : PHPExcel_Reader_IReader
|
||||
{
|
||||
#region IReader Members
|
||||
|
||||
public PHPExcel reads
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
@ -1,25 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel_Writer_Excel2007 : PHPExcel_Writer_IWriter
|
||||
{
|
||||
#region IWriter Members
|
||||
|
||||
public PHPExcel writes
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel_Writer_Excel2007 : PHPExcel_Writer_IWriter
|
||||
{
|
||||
#region IWriter Members
|
||||
|
||||
public PHPExcel writes
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
@ -1,82 +1,82 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel_Writer_Serialized : PHPExcel_Writer_IWriter
|
||||
{
|
||||
#region IWriter Members
|
||||
|
||||
public PHPExcel writes
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PHPExcel_Writer_CSV : PHPExcel_Writer_IWriter
|
||||
{
|
||||
#region IWriter Members
|
||||
|
||||
public PHPExcel writes
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PHPExcel_Writer_Excel5 : PHPExcel_Writer_IWriter
|
||||
{
|
||||
#region IWriter Members
|
||||
|
||||
public PHPExcel writes
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PHPExcel_Writer_HTML : PHPExcel_Writer_IWriter
|
||||
{
|
||||
#region IWriter Members
|
||||
|
||||
public PHPExcel writes
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class PHPExcel_Writer_Serialized : PHPExcel_Writer_IWriter
|
||||
{
|
||||
#region IWriter Members
|
||||
|
||||
public PHPExcel writes
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PHPExcel_Writer_CSV : PHPExcel_Writer_IWriter
|
||||
{
|
||||
#region IWriter Members
|
||||
|
||||
public PHPExcel writes
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PHPExcel_Writer_Excel5 : PHPExcel_Writer_IWriter
|
||||
{
|
||||
#region IWriter Members
|
||||
|
||||
public PHPExcel writes
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
public class PHPExcel_Writer_HTML : PHPExcel_Writer_IWriter
|
||||
{
|
||||
#region IWriter Members
|
||||
|
||||
public PHPExcel writes
|
||||
{
|
||||
get
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
set
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
@ -1,14 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class Worksheet
|
||||
{
|
||||
}
|
||||
|
||||
public class CopyOfWorksheet
|
||||
{
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class Worksheet
|
||||
{
|
||||
}
|
||||
|
||||
public class CopyOfWorksheet
|
||||
{
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user