LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Why can't I create property definition folders on an interface?


@BertMcMahan wrote:

I understand your terminology of private data vs. properties- thanks for the explanation. I think the big issue is simply that property nodes are a nice-to-have feature, which can be implemented the same way with normal VI's that simply look different. Since it's a purely cosmetic feature, it's not high on the list of things for them to fix. (Not that they've actually implemented many idea exchange entries in the last few years :()


There was a time when our feedback was considered valuable and you would see a bunch of new features with the flag that showed they came from the idea exchange with every new version.  😞

Bill
CLD
(Mid-Level minion.)
My support system ensures that I don't look totally incompetent.
Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
Humble author of the CLAD Nugget.
0 Kudos
Message 31 of 40
(236 Views)

 

 

 

 

 

 

 

 

 

TimBlaisdell_0-1743090285492.png

and

TimBlaisdell_1-1743089324689.png

 

Of course the above example is so trivial, someone might say "what's the big deal?" to that too.  But I'm sure you realize how complex a VI can get, and how important clarity and readability can be.

Message 32 of 40
(200 Views)

I do fully agree with that- I use them too, and wish we had them- but I've seen other LabVIEW programmers argue that property nodes are actually to be avoided since they're text-only, and are not localized as well as a simple graphical image. Their style is to remove all text as much as possible, even going as far as to never use text in their icons.

 

(I don't personally follow that philosophy, but it's interesting to think about at least!)

 

One potential workaround would be to make some templates to use for accessors that are smaller, and thus take up less space on the block diagram. I call it a "workaround" since it's a change you have to make for a silly reason, and it doesn't really get you what you want, but it might help 😕

0 Kudos
Message 33 of 40
(192 Views)

I've heard people talk about not ever using text in an icon.  In fact, I've had people on here criticize me for using text on my icons.  I don't understand that.

 

The project I'm working on has tens of thousands of VIs across many libraries and classes.  How is a programmer supposed to come up with a meaningful icon for every VI without using text?  Maybe I'm just not imaginative enough?

 

I get that it can't be localized, but... jeez, unless you're writing code to be shared internationally, who cares?  

 

It would be like telling a Java programmer they can't call the class "Automobile" because it will benefit only English-speaking programmers.  So they must only use meaningless sequences of characters for all their classes and variable names so that all programmers are equally in the dark, regardless what language they speak.

Message 34 of 40
(175 Views)

Replying to

 


@BertMcMahan wrote:

If a child class implements a method, that's always what will be called. If the child doesn't implement a method, and only one interface implements it, then the default method of the interface is called. If multiple parent interfaces implement a method and the child doesn't, then the wire will break- you are required to create an implementation for the child to explicitly define the behavior. 

Hmm... I was today years old (as the kids say) when I learned that you can uncheck "Descendants must override" for a method in an interface.  LabVIEW will then treat the interface code as a parent-class implementation, and let you call it.  And even if you do override the method in the child class, if you typecast a child class object as the interface, you can call the interface code using the child class instance.

 

That is, frankly, terrible, and NI should be ashamed of themselves.  That flat-out breaks the very idea of an interface.  In fact, you shouldn't be able to typecast something to an interface -- because it should be impossible to have an instance of the interface -- that's the very definition of an interface!

 

They did go so far at least as making it not possible to drop a "Call Parent Class Method" on the block diagram of a VI that's implementing an interface method.  So they had the right idea.  But you should also not be able to cast to an interface or drop an interface constant, or call an interface method at all.

 

I always thought it was an oversight that interface methods have a block diagram, but now I see why, and it's not good.

0 Kudos
Message 35 of 40
(171 Views)

@TimBlaisdell wrote:

Replying to

 


@BertMcMahan wrote:

If a child class implements a method, that's always what will be called. If the child doesn't implement a method, and only one interface implements it, then the default method of the interface is called. If multiple parent interfaces implement a method and the child doesn't, then the wire will break- you are required to create an implementation for the child to explicitly define the behavior. 

Hmm... I was today years old (as the kids say) when I learned that you can uncheck "Descendants must override" for a method in an interface.  LabVIEW will then treat the interface code as a parent-class implementation, and let you call it. 





What is wrong in having functional code that doesn't need to get overriden?

Actor Framework
0 Kudos
Message 36 of 40
(163 Views)

@TimBlaisdell wrote:Hmm... I was today years old (as the kids say) when I learned that you can uncheck "Descendants must override" for a method in an interface.  LabVIEW will then treat the interface code as a parent-class implementation, and let you call it.  And even if you do override the method in the child class, if you typecast a child class object as the interface, you can call the interface code using the child class instance.

Again, no. This is not right at all. Please read the paper, I'll link it again: https://forums.ni.com/t5/Community-Documents/LabVIEW-Interfaces-The-Decisions-Behind-the-Design/ta-p...

 

Page 8. If an interface has method X, and the child has an override method X, casting to the interface will still call the child's implementation. Quoting from the paper- "No matter which ancestor wire that a given object is traveling on, method X always dispatches to the same VI for that object."

 

The only time the interface code is called is if the child doesn't implement that method.

 

Also... Java and C# both have default implementations for an interface, so if you think that's a "bad thing" then tell that to Oracle and Microsoft. This isn't something NI just came up with on a whim.

Message 38 of 40
(126 Views)

@TimBlaisdell wrote:

Replying to Quiztus2:

 

If it has functional code that doesn't need to get overridden it's not an interface.  

 

Here are some resources for you that describe what an interface is, in OOP:

 

https://en.wikipedia.org/wiki/Interface_(object-oriented_programming)

https://users.cs.utah.edu/~germain/PPS/Topics/interfaces.html#:~:text=An%20interface%20has%20a%20ver...

https://stackoverflow.com/questions/2866987/what-is-the-definition-of-interface-in-object-oriented-p...

https://www.reddit.com/r/explainlikeimfive/comments/ao5ug4/eli5_what_is_an_interface_in_programming/

 

 

 

 


English is not my first language but I don't see how your links support your statement on that Interfaces have to be 100% pure abstract. I think that is in the end up to the ones designing a programming language. There are no global laws on that, like on nothing.

Actor Framework
0 Kudos
Message 39 of 40
(111 Views)

I poked around a bit more, and tried to get a list of languages that use default implementations (or something very similar), and came up with Swift, C#, Rust, Java, Python, Scala, and C++ (I think that's more just multiple inheritance but I'm not a C++ guy). It also seems like it's something being actively added to at least some of these languages, meaning it's something a LOT of people have decided is a good thing. I could see why you think it's bad if you think typecasting the wire changes the dispatch call, but it's not the case.

Message 40 of 40
(107 Views)