Search results
From APIDesign
You searched for Default
For more information about searching APIDesign, see Help.
Showing below up to 50 results starting with #1.
View (previous 50) (next 50) (20 | 50 | 100 | 250 | 500)
Page title matches
- Default methods (28 bytes)
- Default Listener Methods (2,732 bytes)
9: public default void mouseClicked(MouseEvent e) {}
10: public default void mousePressed(MouseEvent e) {}
11: public default void mouseReleased(MouseEvent e) {}
12: public default void mouseEntered(MouseEvent e) {}
13: public default void mouseExited(MouseEvent e) {}
Page text matches
- ConversionToOpenDocument (832 bytes)
4: ...e if you can convert everything that's currently "Default" to "Body Text." It's probably a lot of work to r... - Blogs:JaroslavTulach:Daily Life (27,376 bytes)
43: ...al.js]] version 19.0.0 has been integrated as the default scripting engine into [[Apache]] [[NetBeans]] 11....
55: [[Nashorn]], the so far default [[JavaScript]] engine of [[JDK]] got deprecated i... - Blogs:JaroslavTulach:Practical Design (17,458 bytes)
135: ...[final interface]] at all) by adding methods with default bodies. Still I found it important to cover this ... - Blogs:JaroslavTulach:Theory (22,864 bytes)
28: ...wer. Yes, [[BinaryCompatibleDefaultMethods|adding default methods to interfaces in a 100% binary compatible...
44: ==== Shocking: [[Default Listener Methods]] ain't Dangerous! ====
46: ...tement, but it has to be made. Looks like using [[Default Listener Methods]] doesn't violate any practices ...
74: ==== Avoid usage of [[default methods]] in an [[API]]! Support [[Cluelessness]]...
76: Don't use [[default methods]] when designing your [[API]]. (For examp... - Blogs:AndreiBadea:EnumsInAPIs (2,008 bytes)
15: default:
22: The <tt>assert false</tt> statement in the default branch is commonly used to ensure that all fields... - NetBeans Platform (2,356 bytes)
9: ...uld that proper [[API]] entry point should not be default [[Javadoc]] with its list of classes and methods,... - Blogs:JesseGlick:OfClassesAndInterfaces (3,608 bytes)
75: ... oops! It was very hard to fix. (You can have the default impl of both versions of the method delegate to t... - Blogs:JaroslavTulach:Daily Life:NewLookAndFeel (970 bytes)
1: .... I like it so much that I decided to make it the default [[Blogs:JaroslavTulach:Daily Life:NewLookAndFeel|... - OSGi (7,935 bytes)
15: # This is not the default to keep things backward compatible - OK, I can un... - APIFest08:TaskX (5,452 bytes)
3: ...und]], you'll be awarded with '''10 points'''. By default you all have those points. However you can be awa... - ProviderAPI (3,010 bytes)
9: ...'interface'''s. All their methods are abstract by default (thus they have to be implemented) and it is clea... - Domain Specific Language (12,164 bytes)
94: ... without sharing { // FYI, without sharing is the default - NetBeans Runtime Container (12,435 bytes)
28: ...ct. Choose its properties and just either use the default NetBeans platform (if you have build of NetBeans ...
62: First task is to create an API. By default no other module can access classes of another mod...
90: ...ons Integration" if you let your frame to use its default layout and you run on JDK 1.5. So do not forget t... - Java Monitor (4,248 bytes)
32: ...ase of [[Java]]'s synchronized methods at all. By default, the methods in '''Cache''' and its subclass '''M... - AlternativeBehavior (6,943 bytes)
35: who don't change their code continue to use the default constructor and - EliminateFuzzyModifiers (8,118 bytes)
61: ...f calling '''super''' implementation, we call the default one:
79: ... open up to subclasses or do you want to call the default implementation? Both is possible, but each leads ...
83: ...who directly call ''sumTwo'', not on behaviour of default ''sumRange''. - Javadoc (1,638 bytes)
9: By default [[Javadoc]] doesn't provide an overview and many ... - Mercurial vs. Subversion (2,795 bytes)
42: ... both to a central repo without a prior merge (by default). - JavaBean (907 bytes)
1: ...va]]. A [[JavaBean]] is a '''public''' class with default (no argument) constructor. It is accompanied by a... - Visitor (3,438 bytes)
17: == JDK8 and [[Default methods]] ==
19: ... [[API]]. A general example can be found at the [[default methods]] page, here is its application to the [[...
28: public default void visitMinus(Minus s) {
33: ... has been written against version 2.0, but the '''default''' method implementation is fine? This makes a di...
35: ...our language/expressions rather than relying on [[default methods]]. Don't be lazy, don't increase [[fuzzin... - Dependency Injection (7,651 bytes)
33: ...get too complex. Associating the [[API]] with its default implementation makes the initialization voluntary... - OSGiAndNetBeans (10,580 bytes)
39: ...Gi]] bundle in source form? Minimal. One line. By default [[NetBeans]] module projects have a skeletal ''ma...
70: ...un]]'s pushback towards accepting [[OSGi]] as the default module system for [[Java]] (e.g. all the attempts... - Modular Java SE (19,537 bytes)
63: ...e the ''search'' functionality of '''javac'''. By default the compiler looks for additional classes in the ...
90: # default = http://source.apidesign.org/hg/jdk/
145: ...version of your [[API]] should see this module by default, so their previous dependencies are satisfied.
164: ...e implementation that identifies getters in their default way (either ''getXYZ'' or ''isXYZ'') is used (see...
166: ... default behaviour in small setup). Actually, the default behaviour is in fact also correct - the advanced ... - OpenJDK (3,064 bytes)
24: ..., as far as I can tell. I thought configuring the default options for all [[Java]] processes is impossible.... - CompileTimeCache (8,107 bytes)
25: ...he ''javac'' compiler invokes these processors by default. All that is needed is to include a library which... - Convention over Configuration (1,033 bytes)
1: ...]] users create can be analysed automatically and default configuration deduced from it. Modern frameworks ...
3: ...e credo of [[Convention over Configuration]]: The default is easy to use, if you don't like it, you can pro... - Netbinox (8,652 bytes)
43: ... container looks and is accessed from outside. By default the standard [[NetBeans]] like access is supporte... - Singleton (11,169 bytes)
67: ...g [[Injectable Singleton]]s have to provide their default ''dummy'' implementation, you are fine to have ju...
69: Of course, the default implementations may not be sufficient for testing... - Injectable Singleton (9,863 bytes)
15: ...ne? Each [[Injectable Singleton]] needs to define default (even dummy) implementation! Let's do it like thi...
19: ...t very useful, but often there are cases when the default behavior can be made acceptable for many purposes...
39: ... client code and the [[singleton]]'s [[API]] with default implementation):
65: ...lication assemblers which are ''dissatisfied with default'', drop-in real implementations onto the classpat...
81: ...esult (in contrary to [[ServiceLoader]] where the default behavior is hard-coded and cannot be [[injection|... - API Patch (4,634 bytes)
5: Recently I've been given the privilege to become default owner of many [[NetBeans]] platform [[API]]s incl... - Virtualization (5,493 bytes)
25: ...vm.cfg'' is not the one, one cannot specify there default command line arguments). Well, it is not document...
60: ...at is not possible for some reasons now, then the default ''ergonomics'' need to take existing system resou... - ThreadContextClassLoader (5,750 bytes)
14: ...that [[NetBeans]] [[ThreadContextClassLoader]] by default delegates to parent [[ClassLoader]] first (e.g. t... - Chuck Norris (1,722 bytes)
5: ...ng]]. There is an interface and then there is a ''default'' implementation that simplifies the interface us... - Enum (7,264 bytes)
7: ...oing to be some changes in newer versions - the ''default'' branch may be used more and more often, but ove... - CPL (7,918 bytes)
57: ...would like to stick with [[GPL]]v2, but alas, the default file header in many software project allowed anyo... - Incremental deployment (6,423 bytes)
15: ...by updates of new modules. Such modules, often by default turned on, turn on also pieces of the [[netbeans:... - RandomizedTests (5,607 bytes)
26: ...numbers. If you look at the implementation of the default Random constructor, you will find out that the in... - Final interface (8,284 bytes)
9: ...[[Java]] applications were not satisfied with the default [[Java]] parser and needed to include different i...
19: ...ch!). Reasonable [[API]] writers then provide the default bodies for newly added methods and mitigate most ... - JigsawServices (4,966 bytes)
69: requires service S with default M2@1.6; - Hint (1,661 bytes)
1: ...Hint]] in a [[modular system]] allows expressing, default, preferred and actual solution to particular conf...
8: ...er Configuration]] - unless somebody overrides my default, use [[Xerces]].
9: ...can decide certain services should have different default (this is what [[Maven]] tries to do with its ''sh...
18: -default org.apache.crimson.CrimsonBuilderFactory - FlowControllingTest (35,143 bytes)
82: // some default - Never update tests (1,603 bytes)
10: ...suspicious, but they can also accept methods with default implementations - Bck2Brwsr 0.5 (1,274 bytes)
9: ...Strips spaces. Works in dynamic mode (part of the default [[Maven]] archetype) - Twitter (2,317 bytes)
27: ...d you'll see the same application running in your default system browser. - WORA (706 bytes)
3: These days [[JavaScript]] (the default language of the browser) becomes increasingly pop... - Bck2Brwsr 0.10 (1,878 bytes)
29: public default int value() { - Gradle (10,710 bytes)
21: ... of that [[NetBeans]] IDE 4.0 used [[Ant]] as its default build harness and supported ''two way editing'' -... - I18N (2,436 bytes)
5: ...translated property is missing, one falls back to default (English in case of [[NetBeans]]) version - the o... - TruffleSigtest (7,790 bytes)
13: ... updated to [[JDK]]8 language constructs (e.g. '''default''' and '''static''' methods in interfaces). Howev...
52: $ hg up default - AutoUpdate (2,296 bytes)
1: ...load parts of the system that aren't installed by default.
View (previous 50) (next 50) (20 | 50 | 100 | 250 | 500)