initial commit of SVN release repo
This commit is contained in:
15
inc/vendor/phpoffice/phpspreadsheet/docs/assets/ClassDiagrams/Classes/IReader.cs
vendored
Normal file
15
inc/vendor/phpoffice/phpspreadsheet/docs/assets/ClassDiagrams/Classes/IReader.cs
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public interface PHPExcel_Reader_IReader
|
||||
{
|
||||
PHPExcel reads
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
15
inc/vendor/phpoffice/phpspreadsheet/docs/assets/ClassDiagrams/Classes/IWriter.cs
vendored
Normal file
15
inc/vendor/phpoffice/phpspreadsheet/docs/assets/ClassDiagrams/Classes/IWriter.cs
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public interface PHPExcel_Writer_IWriter
|
||||
{
|
||||
PHPExcel writes
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
40
inc/vendor/phpoffice/phpspreadsheet/docs/assets/ClassDiagrams/Classes/PHPExcel.cs
vendored
Normal file
40
inc/vendor/phpoffice/phpspreadsheet/docs/assets/ClassDiagrams/Classes/PHPExcel.cs
vendored
Normal file
@ -0,0 +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
|
||||
}
|
||||
}
|
41
inc/vendor/phpoffice/phpspreadsheet/docs/assets/ClassDiagrams/Classes/PHPExcel_IOFactory.cs
vendored
Normal file
41
inc/vendor/phpoffice/phpspreadsheet/docs/assets/ClassDiagrams/Classes/PHPExcel_IOFactory.cs
vendored
Normal file
@ -0,0 +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();
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +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
|
||||
}
|
||||
}
|
63
inc/vendor/phpoffice/phpspreadsheet/docs/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel5.cs
vendored
Normal file
63
inc/vendor/phpoffice/phpspreadsheet/docs/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel5.cs
vendored
Normal file
@ -0,0 +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
|
||||
}
|
||||
}
|
@ -0,0 +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
|
||||
}
|
||||
}
|
@ -0,0 +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
|
||||
}
|
||||
}
|
@ -0,0 +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
|
||||
}
|
||||
}
|
14
inc/vendor/phpoffice/phpspreadsheet/docs/assets/ClassDiagrams/Classes/Worksheet.cs
vendored
Normal file
14
inc/vendor/phpoffice/phpspreadsheet/docs/assets/ClassDiagrams/Classes/Worksheet.cs
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ClassDiagrams
|
||||
{
|
||||
public class Worksheet
|
||||
{
|
||||
}
|
||||
|
||||
public class CopyOfWorksheet
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user