From 15237e341ab9afaf739ae06f76cd1925e4b30b44 Mon Sep 17 00:00:00 2001 From: mullerj Date: Tue, 27 Aug 2024 21:00:52 -0400 Subject: [PATCH] Updated design --- src/dotnet/design/Mil/Navy/Nrl/Norm/NormApi.puml | 2 +- src/dotnet/design/Mil/Navy/Nrl/Norm/NormFile.puml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dotnet/design/Mil/Navy/Nrl/Norm/NormApi.puml b/src/dotnet/design/Mil/Navy/Nrl/Norm/NormApi.puml index 824d07a..1be3b84 100644 --- a/src/dotnet/design/Mil/Navy/Nrl/Norm/NormApi.puml +++ b/src/dotnet/design/Mil/Navy/Nrl/Norm/NormApi.puml @@ -91,7 +91,7 @@ class NormApi <> { + {static} <> NormObjectGetType(objectHandle:long) : NormObjectType + {static} <> NormObjectHasInfo(objectHandle:long) : bool + {static} <> NormObjectGetInfoLength(objectHandle:long) : int - + {static} <> NormObjectGetInfo(objectHandle:long, buffer:nint, bufferLen:int) : int + + {static} <> NormObjectGetInfo(objectHandle:long, buffer:byte[], bufferLen:int) : int + {static} <> NormObjectGetSize(objectHandle:long) : int + {static} <> NormObjectGetBytesPending(objectHandle:long) : long + {static} <> NormObjectCancel(objectHandle:long) : void diff --git a/src/dotnet/design/Mil/Navy/Nrl/Norm/NormFile.puml b/src/dotnet/design/Mil/Navy/Nrl/Norm/NormFile.puml index f26b63a..b2e2a9b 100644 --- a/src/dotnet/design/Mil/Navy/Nrl/Norm/NormFile.puml +++ b/src/dotnet/design/Mil/Navy/Nrl/Norm/NormFile.puml @@ -2,7 +2,7 @@ class NormFile { + <> FILENAME_MAX : int = 260 <> NormFile(handle:long) - + Name : string <> + + <> Name : string <> + Rename(filePath:string) : void } NormObject <|-- NormFile