正如我们前面所讨论的,J2EE角色终究只是一个名称,是可以绑定到任何一组主体的逻辑构造。
After all, as we discussed earlier, a J2EE role is merely a name, a logical construct that can be bound to any set of principals.
应当在这种批判的基础上,重新思考和定位人的法律角色、法的逻辑构造方式、法的正义观念等。
Based on the reflection, the citizen legal role, the logic structure of law, and the justice idea of law should be reconsidered and reoriented.
合同案件的推理与分析实质是按照合同权利的逻辑构造关系递进展开的,本文将其概括为合同案件分析的五个步骤。
The reasoning and analysis of contract cases are developed according to the logical structure, which is divided into five steps analyzing contract cases.
从有利于人们在实践中追求和实现社会正义的目的出发,可以将社会正义的构造理解为过程构造与逻辑构造的统一。
From the purpose of benefiting to people seeking and realizing social justice, the structure of social justice can be considered to be unity of course structure and logic structure.
应用程序的业务逻辑将定义这些文档的生命周期、如何构造这些文档中的值以及这些文档如何与其他文档关联。
The business logic of the application defines the life cycle of these documents, how the values in them are constructed, and how the documents relate to other documents.
当然,必须在操作中对该业务逻辑进行编码,但是要构造完整的功能原型,不需要编写任何UI代码。
Of course, the business logic must be coded in the operations, but no UI code is required to construct a fully functional prototype.
对于更高级的用户,他们懂一点逻辑,懂得如何创建测试场景,可以使用编辑器和功能测试的领域特定语言去构造测试。
For more advanced users, who understand a little logic and how test scenarios should be created, they can use the editor to construct tests using a functional testing DSL (domain specific language).
它让您用循环构造和条件逻辑控制程序流,极大地增强了构建过程。
It greatly enhances the build process by letting you control program flow with looping constructs and conditional logic.
类的这种重构也会改进代码,因为我们将初始化逻辑从对象的构造函数分离出来了。
This refactoring of the class also improves the code so that we have separated the initialization code from the object construction code.
软件组件的构造(无论是处理序列逻辑、策略、基本计算、人机界面或数据管理)都可以通过重用提高效率。
Construction of software components, whether process sequencing logic, policy, basic computation, human interface or data management, increases productivity by reuse.
OWL转换配置将运行转换逻辑以产生必需的OWL构造。
The OWL transformation configuration runs the transformation logic to produce the necessary OWL constructs.
因为所有的辅助构造函数最终都会调用主构造函数,它主体中进行的逻辑检查和其它初始化工作会在所有实例被创建的时候执行。
Because all auxiliary constructors eventually invoke the primary constructor, logic checks and other initializations done in the body will be performed consistently for all instances created.
该构造和连接逻辑通常在XML中提供,但是还有大量其他配置选项。
This construction and wiring logic is typically provided in XML, however there are a number of other configuration options.
构造新的逻辑数据模型。
复合应用程序的组件都是围绕构成应用程序的逻辑单元精心设计的,而不是围绕刚好用于设计这些组件的Lotus Notes设计构造。
Components for a composite application are best designed around the logical units that form an application and not the Lotus Notes design constructs that happen to be used to articulate them.
与传统的Web应用程序框架不同,Xquery很容易在查询文件中构造业务逻辑。
Unlike a traditional Web application framework, XQuery can construct the business logic easily in a query file.
HATS业务逻辑程序使用Atomfeed库构造 feed。
The HATS business logic program constructs the feed using the Atom feed library.
接下来,我需要重构刚才写入文件的那段代码——这一次采用一定的逻辑使用ChecksumClass构造一个列表,如清单16所示。
Next, I need to refactor the section of code that previously wrote to a file — this time with logic to populate a list with the new ChecksumClass, as shown in Listing 16.
SOA的基本思想是将企业或组织封装在服务组成的构造中,其中从数据到逻辑和业务功能都成为了某种类型的服务。
The basic concept of SOA is that it encapsulates an enterprise or organization within a construct of services, where everything from data to logic and business functions becomes some type of service.
初始化这些字段不需要逻辑上的构造函数,这和很多面向对象语言不同。
No constructor logic is required to initialize these fields, in contrast to most other object-oriented languages.
遇到这些情况时,需要重新构造结构和处理逻辑以避免发生此类问题。
In these cases you may need to refactor your orchestration or processing logic to avoid this scenario.
通常的构造策略是将系统分层,将用户界面逻辑、商业逻辑、系统逻辑和持久性逻辑彼此分开。
A common architectural strategy is to layer your system, separating your user interface logic, business logic, system logic, and persistence logic from each other.
构造型的属性,不管是逻辑值、整数值还是枚举类型的,都在概述中被分配有默认值。
The stereotype properties, which are of Boolean, integer, or enumeration types, have been assigned default values in the profile.
此外,在构造函数内有某种逻辑,这种逻辑将确定是否先获得实例。
Moreover, there is certain logic within its constructor that would determine whether an instance can be obtained in the first place.
各事件处理器可以获得前一个处理器的结果依次运行,这样就可以构造出非常复杂的逻辑。
Handlers can run in sequence by picking up from the previous handler's result, which makes it possible to create quite complex logic.
清单4 中所示的应用逻辑包含在这个类的两个方法中:构造函数和showProduct方法。
The application logic shown in Listing 4 is contained within two methods in this class: the constructor and the showProduct method.
然而,现在我们在测试过程中只能够传递一个布尔值false给构造函数,以避免调用init方法和所有不必要的初始化逻辑。
However, now we can just pass a Boolean false to the constructor during our tests to avoid calling the init method and all the unneeded initialization logic.
我们重构了构造函数中大量的代码,将它们移到一个init方法中,这个方法默认情况下仍然会被构造函数调用,以避免破坏现有代码的逻辑。
We've refactored the large amount of code in the constructor to put it in an init method, which still will be called by default in the constructor to avoid breaking any existing code.
我们重构了构造函数中大量的代码,将它们移到一个init方法中,这个方法默认情况下仍然会被构造函数调用,以避免破坏现有代码的逻辑。
We've refactored the large amount of code in the constructor to put it in an init method, which still will be called by default in the constructor to avoid breaking any existing code.
应用推荐