170 lines
6.2 KiB
VB.net
170 lines
6.2 KiB
VB.net
#Region "Microsoft.VisualBasic::e475508ddb4af538266f0143bcb31848, Microsoft.VisualBasic.Core\CommandLine\Reflection\Attributes\ExportAPI.vb"
|
|
|
|
' Author:
|
|
'
|
|
' asuka (amethyst.asuka@gcmodeller.org)
|
|
' xie (genetics@smrucc.org)
|
|
' xieguigang (xie.guigang@live.com)
|
|
'
|
|
' Copyright (c) 2018 GPL3 Licensed
|
|
'
|
|
'
|
|
' GNU GENERAL PUBLIC LICENSE (GPL3)
|
|
'
|
|
'
|
|
' This program is free software: you can redistribute it and/or modify
|
|
' it under the terms of the GNU General Public License as published by
|
|
' the Free Software Foundation, either version 3 of the License, or
|
|
' (at your option) any later version.
|
|
'
|
|
' This program is distributed in the hope that it will be useful,
|
|
' but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
' GNU General Public License for more details.
|
|
'
|
|
' You should have received a copy of the GNU General Public License
|
|
' along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
' /********************************************************************************/
|
|
|
|
' Summaries:
|
|
|
|
' Class LastUpdatedAttribute
|
|
'
|
|
' Constructor: (+3 Overloads) Sub New
|
|
' Function: ToString
|
|
'
|
|
' Class ExportAPIAttribute
|
|
'
|
|
' Properties: Example, Info, Name, Usage
|
|
'
|
|
' Constructor: (+1 Overloads) Sub New
|
|
' Function: ToString
|
|
'
|
|
' Interface IExportAPI
|
|
'
|
|
' Properties: Example, Info, Name, Usage
|
|
'
|
|
'
|
|
' /********************************************************************************/
|
|
|
|
#End Region
|
|
|
|
Imports Microsoft.VisualBasic.Scripting.MetaData
|
|
|
|
Namespace CommandLine.Reflection
|
|
|
|
''' <summary>
|
|
''' 主要是用于帮助标记命令行命令的更新时间,了解哪些命令可能是已经过时了的
|
|
''' </summary>
|
|
<AttributeUsage(AttributeTargets.Method, AllowMultiple:=False, Inherited:=True)>
|
|
Public Class LastUpdatedAttribute : Inherits Attribute
|
|
|
|
Public ReadOnly [Date] As Date
|
|
|
|
Sub New([date] As Date)
|
|
Me.Date = [date]
|
|
End Sub
|
|
|
|
Sub New([date] As String)
|
|
Me.Date = Date.Parse([date])
|
|
End Sub
|
|
|
|
Sub New(yy%, mm%, dd%, H%, M%, S%)
|
|
Me.Date = New Date(yy, mm, dd, H, M, S)
|
|
End Sub
|
|
|
|
Public Overrides Function ToString() As String
|
|
Return [Date].ToString
|
|
End Function
|
|
End Class
|
|
|
|
''' <summary>
|
|
''' A command object that with a specific name.(一个具有特定名称命令执行对象)
|
|
''' </summary>
|
|
''' <remarks></remarks>
|
|
<AttributeUsage(AttributeTargets.Method, AllowMultiple:=False, Inherited:=True)>
|
|
Public Class ExportAPIAttribute : Inherits Attribute
|
|
Implements IExportAPI
|
|
|
|
''' <summary>
|
|
''' The name of the commandline object.(这个命令的名称)
|
|
''' </summary>
|
|
''' <value></value>
|
|
''' <returns></returns>
|
|
''' <remarks></remarks>
|
|
Public ReadOnly Property Name As String Implements IExportAPI.Name
|
|
''' <summary>
|
|
''' Something detail of help information.(详细的帮助信息)
|
|
''' </summary>
|
|
''' <value></value>
|
|
''' <returns></returns>
|
|
''' <remarks></remarks>
|
|
<Obsolete> Public Property Info As String Implements IExportAPI.Info
|
|
''' <summary>
|
|
''' The usage of this command.(这个命令的用法,本属性仅仅是一个助记符,当用户没有编写任何的使用方法信息的时候才会使用本属性的值)
|
|
''' </summary>
|
|
''' <value></value>
|
|
''' <returns></returns>
|
|
''' <remarks></remarks>
|
|
<Obsolete> Public Property Usage As String Implements IExportAPI.Usage
|
|
''' <summary>
|
|
''' A example that to useing this command.
|
|
''' (对这个命令的使用示例,本属性仅仅是一个助记符,当用户没有编写任何示例信息的时候才会使用本属性的值,
|
|
''' 在编写帮助示例的时候,需要编写出包括命令开关名称的完整的例子)
|
|
''' </summary>
|
|
''' <value></value>
|
|
''' <returns></returns>
|
|
''' <remarks></remarks>
|
|
<Obsolete> Public Property Example As String Implements IExportAPI.Example
|
|
|
|
''' <summary>
|
|
''' You are going to define a available export api for you application to another language or scripting program environment.
|
|
''' (定义一个命令行程序之中可以使用的命令)
|
|
''' </summary>
|
|
''' <param name="Name">The name of the commandline object or you define the exported API name here.(这个命令的名称)</param>
|
|
''' <remarks></remarks>
|
|
Sub New(<Parameter("Command.Name", "The name of the commandline object.")> Name As String)
|
|
_Name = Name
|
|
End Sub
|
|
|
|
Public Overrides Function ToString() As String
|
|
Return Name
|
|
End Function
|
|
End Class
|
|
|
|
Public Interface IExportAPI
|
|
|
|
''' <summary>
|
|
''' The name of the commandline object.(这个命令的名称)
|
|
''' </summary>
|
|
''' <value></value>
|
|
''' <returns></returns>
|
|
''' <remarks></remarks>
|
|
ReadOnly Property Name As String
|
|
''' <summary>
|
|
''' Something detail of help information.(详细的帮助信息)
|
|
''' </summary>
|
|
''' <value></value>
|
|
''' <returns></returns>
|
|
''' <remarks></remarks>
|
|
ReadOnly Property Info As String
|
|
''' <summary>
|
|
''' The usage of this command.(这个命令的用法,本属性仅仅是一个助记符,当用户没有编写任何的使用方法信息的时候才会使用本属性的值)
|
|
''' </summary>
|
|
''' <value></value>
|
|
''' <returns></returns>
|
|
''' <remarks></remarks>
|
|
ReadOnly Property Usage As String
|
|
''' <summary>
|
|
''' A example that to useing this command.(对这个命令的使用示例,本属性仅仅是一个助记符,当用户没有编写任何示例信息的时候才会使用本属性的值)
|
|
''' </summary>
|
|
''' <value></value>
|
|
''' <returns></returns>
|
|
''' <remarks></remarks>
|
|
ReadOnly Property Example As String
|
|
End Interface
|
|
End Namespace
|