Skip to content

Commit

Permalink
Merge pull request #3 from PyramidTechnologies/java_rewrite
Browse files Browse the repository at this point in the history
Add doxygen markup for ignoring internal classes
  • Loading branch information
catodd committed Sep 8, 2015
2 parents 68e690a + cd5ff23 commit d2bb347
Show file tree
Hide file tree
Showing 9 changed files with 2,469 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ Apex7000_BillValidator_Test/obj/
Apex7000_BillValidator/bin/
API_Test/bin/
API_Test/obj/
docs/
4 changes: 3 additions & 1 deletion Apex7000_BillValidator/Apex7000_BillValidator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Debug\Apex7000_BillValidator.XML</DocumentationFile>
<DocumentationFile>
</DocumentationFile>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
Expand All @@ -32,6 +33,7 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\Apex7000_BillValidator.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net, Version=1.2.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
Expand Down
5 changes: 4 additions & 1 deletion Apex7000_BillValidator/MasterCodex.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@

namespace Apex7000_BillValidator
{
class MasterCodex
/// <summary>
/// \internal
/// </summary>
internal class MasterCodex
{
// Mask out reserved and ignored bits
private static MasterMessage relevanceMask = (MasterMessage)0xFE7F;
Expand Down
3 changes: 2 additions & 1 deletion Apex7000_BillValidator/Serial/PortException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace PTI.Serial
{
/// \internal
internal enum ExceptionTypes
{
Timeout,
Expand All @@ -11,7 +12,7 @@ internal enum ExceptionTypes
AccessError
}


/// \internal
[SerializableAttribute]
internal class PortException : Exception, ISerializable
{
Expand Down
1 change: 1 addition & 0 deletions Apex7000_BillValidator/Serial/SerialPortFixer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

namespace PTI.Serial
{
/// \internal
internal class SerialPortFixer : IDisposable
{
[EnvironmentPermissionAttribute(SecurityAction.LinkDemand, Unrestricted = true)]
Expand Down
1 change: 1 addition & 0 deletions Apex7000_BillValidator/Serial/StrongPort.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ namespace PTI.Serial
{

// Wrapper around SerialPort
// \internal
internal class StrongPort : ICommPort
{
private static readonly ILog log = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
Expand Down
1 change: 1 addition & 0 deletions Apex7000_BillValidator/SlaveCodex.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ namespace Apex7000_BillValidator
/// <summary>
/// Used internally to quickly translate between bytes and the string meaning
/// </summary>
/// \internal
internal class SlaveCodex
{
private static SlaveMessage stateMask = (SlaveMessage)0x40C2F;
Expand Down
Loading

0 comments on commit d2bb347

Please sign in to comment.