Searched refs:header (Results 1 - 25 of 36) sorted by relevance

12

/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/introspection/
H A DClassFile.java64 ByteBuffer header; field in class:ClassFile
69 header = ByteBuffer.allocate(12000);
77 header.clear();
78 if (size!=-1 && size>header.capacity()) {
80 header = ByteBuffer.allocate((int) size);
82 long read = (long) in.read(header);
86 header.rewind();
87 return containsAnnotation(header);
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/
H A DProxyHandlerImpl.java60 * SSL offloader has added as a custom request header on the
71 * from the request header cannot be parsed
97 * the SSL offloader has added as a custom request header on the
110 String header = request.getHeader("Proxy-keysize");
111 if (header != null) {
112 keySize = Integer.parseInt(header);
/glassfish-3.1.2/tests/embedded/maven-plugin/websockets/src/main/webapp/stylesheets/
H A Ddefault.css67 #header {
70 background: url(../images/header-background.png) no-repeat;
73 #header h1 {
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DRequestUtil.java85 * as the value for a <code>Set-Cookie</code> header.
202 * Parse the character encoding from the specified content type header.
206 * @param contentType a content type header
229 * Parse a cookie header into an array of cookies according to RFC 2109.
231 * @param header Value of an HTTP "Cookie" header
233 public static Cookie[] parseCookieHeader(String header) { argument
235 if ((header == null) || (header.length() < 1))
239 while (header
[all...]
/glassfish-3.1.2/build/glassfish-obr-builder/src/main/java/org/glassfish/obrbuilder/
H A DMain.java101 for (String header : headersToCheck) {
102 if (attrs.getValue(header) != null) return true;
/glassfish-3.1.2/admin/rest/src/test/java/org/glassfish/admin/rest/
H A DNoCLICommandResourceCreationTest.java70 .header("Content-Type", MediaType.APPLICATION_XML)
87 .header("Content-Type", MediaType.APPLICATION_XML)
H A DPropertiesBagTest.java296 .header("Content-Type", REQUEST_FORMAT)
318 .header("Content-Type", REQUEST_FORMAT)
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Dtrees.c160 int header));
333 FILE *header = fopen("trees.h", "w"); local
336 Assert (header != NULL, "Can't open trees.h");
337 fprintf(header,
338 "/* header created automatically with -DGEN_TREES_H */\n\n");
340 fprintf(header, "local const ct_data static_ltree[L_CODES+2] = {\n");
342 fprintf(header, "{{%3u},{%3u}}%s", static_ltree[i].Code,
346 fprintf(header, "local const ct_data static_dtree[D_CODES] = {\n");
348 fprintf(header, "{{%2u},{%2u}}%s", static_dtree[i].Code,
352 fprintf(header, "cons
[all...]
H A Ddeflate.c239 if (windowBits < 0) { /* undocumented feature: suppress zlib header */
459 /* Write the zlib header */
462 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; local
466 header |= (level_flags << 6);
467 if (s->strstart != 0) header |= PRESET_DICT;
468 header += 31 - (header % 31);
471 putShortMSB(s, header);
1085 * to pending_buf_size, and each stored block has a 5 byte header:
/glassfish-3.1.2/admingui/war/src/main/webapp/resources/yui/
H A Dlayout-min.js8 this._setupElements();}this.resize();this._rendered=true;this.fireEvent("render");return this;},_stamp:function(){if(document.compatMode=="CSS1Compat"){this.browser.standardsMode=true;}if(window.location.href.toLowerCase().indexOf("https")===0){C.addClass(document.documentElement,"secure");this.browser.secure=true;}},initAttributes:function(E){B.superclass.initAttributes.call(this,E);this.setAttributeConfig("units",{writeOnce:true,validator:YAHOO.lang.isArray,value:E.units||[]});this.setAttributeConfig("minHeight",{value:E.minHeight||false,validator:YAHOO.lang.isNumber});this.setAttributeConfig("minWidth",{value:E.minWidth||false,validator:YAHOO.lang.isNumber});this.setAttributeConfig("height",{value:E.height||false,validator:YAHOO.lang.isNumber,method:function(F){this.setStyle("height",F+"px");}});this.setAttributeConfig("width",{value:E.width||false,validator:YAHOO.lang.isNumber,method:function(F){this.setStyle("width",F+"px");}});this.setAttributeConfig("parent",{writeOnce:true,value:E.parent||false,method:function(F){if(F){F.on("resize",this.resize,this,true);}}});},destroy:function(){var G=this.get("parent");if(G){G.removeListener("resize",this.resize,this,true);}A.removeListener(window,"resize",this.resize,this,true);this.unsubscribeAll();for(var E in this._units){if(D.hasOwnProperty(this._units,E)){if(this._units[E]){this._units[E].destroy(true);}}}A.purgeElement(this.get("element"));this.get("parentNode").removeChild(this.get("element"));delete YAHOO.widget.Layout._instances[this.get("id")];for(var F in this){if(D.hasOwnProperty(this,F)){this[F]=null;delete this[F];}}if(G){G.resize();}},toString:function(){if(this.get){return"Layout #"+this.get("id");}return"Layout";}});YAHOO.widget.Layout=B;})();(function(){var D=YAHOO.util.Dom,C=YAHOO.util.Selector,A=YAHOO.util.Event,E=YAHOO.lang;var B=function(G,F){var H={element:G,attributes:F||{}};B.superclass.constructor.call(this,H.element,H.attributes);};B._instances={};B.getLayoutUnitById=function(F){if(B._instances[F]){return B._instances[F];}return false;};YAHOO.extend(B,YAHOO.util.Element,{STR_CLOSE:"Click to close this pane.",STR_COLLAPSE:"Click to collapse this pane.",STR_EXPAND:"Click to expand this pane.",LOADING_CLASSNAME:"loading",browser:null,_sizes:null,_anim:null,_resize:null,_clip:null,_gutter:null,header:null,body:null,footer:null,_collapsed:null,_collapsing:null,_lastWidth:null,_lastHeight:null,_lastTop:null,_lastLeft:null,_lastScroll:null,_lastCenterScroll:null,_lastScrollTop:null,resize:function(F){var G=this.fireEvent("beforeResize");if(G===false){return this;}if(!this._collapsing||(F===true)){var N=this.get("scroll");this.set("scroll",false);var K=this._getBoxSize(this.header),J=this._getBoxSize(this.footer),L=[this.get("height"),this.get("width")];var H=(L[0]-K[0]-J[0])-(this._gutter.top+this._gutter.bottom),M=L[1]-(this._gutter.left+this._gutter.right);var O=(H+(K[0]+J[0])),I=M;if(this._collapsed&&!this._collapsing){this._setHeight(this._clip,O);this._setWidth(this._clip,I);D.setStyle(this._clip,"top",this.get("top")+this._gutter.top+"px");D.setStyle(this._clip,"left",this.get("left")+this._gutter.left+"px");}else{if(!this._collapsed||(this._collapsed&&this._collapsing)){O=this._setHeight(this.get("wrap"),O);I=this._setWidth(this.get("wrap"),I);this._sizes.wrap.h=O;this._sizes.wrap.w=I;D.setStyle(this.get("wrap"),"top",this._gutter.top+"px");D.setStyle(this.get("wrap"),"left",this._gutter.left+"px");this._sizes.header.w=this._setWidth(this.header,I);this._sizes.header.h=K[0];this._sizes.footer.w=this._setWidth(this.footer,I);this._sizes.footer.h=J[0];D.setStyle(this.footer,"bottom","0px");this._sizes.body.h=this._setHeight(this.body,(O-(K[0]+J[0])));this._sizes.body.w=this._setWidth(this.body,I);D.setStyle(this.body,"top",K[0]+"px");this.set("scroll",N);this.fireEvent("resize");}}}return this;},_setWidth:function(H,G){if(H){var F=this._getBorderSizes(H);G=(G-(F[1]+F[3]));G=this._fixQuirks(H,G,"w");if(G<0){G=0;}D.setStyle(H,"width",G+"px");}return G;},_setHeight:function(H,G){if(H){var F=this._getBorderSizes(H);G=(G-(F[0]+F[2]));G=this._fixQuirks(H,G,"h");if(G<0){G=0;}D.setStyle(H,"height",G+"px");}return G;},_fixQuirks:function(I,L,G){var K=0,H=2;if(G=="w"){K=1;H=3;}if(this.browser.ie&&!this.browser.standardsMode){var F=this._getBorderSizes(I),J=this._getBorderSizes(I.parentNode);if((F[K]===0)&&(F[H]===0)){if((J[K]!==0)&&(J[H]!==0)){L=(L-(J[K]+J[H]));}}else{if((J[K]===0)&&(J[H]===0)){L=(L+(F[K]+F[H]));}}}return L;},_getBoxSize:function(H){var G=[0,0];if(H){if(this.browser.ie&&!this.browser.standardsMode){H.style.zoom=1;}var F=this._getBorderSizes(H);G[0]=H.clientHeight+(F[0]+F[2]);G[1]=H.clientWidth+(F[1]+F[3]);}return G;},_getBorderSizes:function(H){var G=[];H=H||this.get("element");if(this.browser.ie&&!this.browser.standardsMode){H.style.zoom=1;}G[0]=parseInt(D.getStyle(H,"borderTopWidth"),10);G[1]=parseInt(D.getStyle(H,"borderRightWidth"),10);G[2]=parseInt(D.getStyle(H,"borderBottomWidth"),10);G[3]=parseInt(D.getStyle(H,"borderLeftWidth"),10);for(var F=0;F<G.length;F++){if(isNaN(G[F])){G[F]=0;}}return G;},_createClip:function(){if(!this._clip){this._clip=document.createElement("div");this._clip.className="yui-layout-clip yui-layout-clip-"+this.get("position");this._clip.innerHTML='<div class="collapse"></div>';var F=this._clip.firstChild;F.title=this.STR_EXPAND;A.on(F,"click",this.expand,this,true);this.get("element").parentNode.appendChild(this._clip);}},_toggleClip:function(){if(!this._collapsed){var J=this._getBoxSize(this.header),K=this._getBoxSize(this.footer),I=[this.get("height"),this.get("width")];var H=(I[0]-J[0]-K[0])-(this._gutter.top+this._gutter.bottom),F=I[1]-(this._gutter.left+this._gutter.right),G=(H+(J[0]+K[0]));switch(this.get("position")){case"top":case"bottom":this._setWidth(this._clip,F);this._setHeight(this._clip,this.get("collapseSize"));D.setStyle(this._clip,"left",(this._lastLeft+this._gutter.left)+"px");if(this.get("position")=="bottom"){D.setStyle(this._clip,"top",((this._lastTop+this._lastHeight)-(this.get("collapseSize")-this._gutter.top))+"px");
9 }else{D.setStyle(this._clip,"top",this.get("top")+this._gutter.top+"px");}break;case"left":case"right":this._setWidth(this._clip,this.get("collapseSize"));this._setHeight(this._clip,G);D.setStyle(this._clip,"top",(this.get("top")+this._gutter.top)+"px");if(this.get("position")=="right"){D.setStyle(this._clip,"left",(((this._lastLeft+this._lastWidth)-this.get("collapseSize"))-this._gutter.left)+"px");}else{D.setStyle(this._clip,"left",(this.get("left")+this._gutter.left)+"px");}break;}D.setStyle(this._clip,"display","block");this.setStyle("display","none");}else{D.setStyle(this._clip,"display","none");}},getSizes:function(){return this._sizes;},toggle:function(){if(this._collapsed){this.expand();}else{this.collapse();}return this;},expand:function(){if(!this._collapsed){return this;}var L=this.fireEvent("beforeExpand");if(L===false){return this;}this._collapsing=true;this.setStyle("zIndex",this.get("parent")._zIndex+1);if(this._anim){this.setStyle("display","none");var F={},H;switch(this.get("position")){case"left":case"right":this.set("width",this._lastWidth,true);this.setStyle("width",this._lastWidth+"px");this.get("parent").resize(false);H=this.get("parent").getSizes()[this.get("position")];this.set("height",H.h,true);var K=H.l;F={left:{to:K}};if(this.get("position")=="left"){F.left.from=(K-H.w);this.setStyle("left",(K-H.w)+"px");}break;case"top":case"bottom":this.set("height",this._lastHeight,true);this.setStyle("height",this._lastHeight+"px");this.get("parent").resize(false);H=this.get("parent").getSizes()[this.get("position")];this.set("width",H.w,true);var J=H.t;F={top:{to:J}};if(this.get("position")=="top"){this.setStyle("top",(J-H.h)+"px");F.top.from=(J-H.h);}break;}this._anim.attributes=F;var I=function(){this.setStyle("display","block");this.resize(true);this._anim.onStart.unsubscribe(I,this,true);};var G=function(){this._collapsing=false;this.setStyle("zIndex",this.get("parent")._zIndex);this.set("width",this._lastWidth);this.set("height",this._lastHeight);this._collapsed=false;this.resize();this.set("scroll",this._lastScroll);if(this._lastScrollTop>0){this.body.scrollTop=this._lastScrollTop;}this._anim.onComplete.unsubscribe(G,this,true);this.fireEvent("expand");};this._anim.onStart.subscribe(I,this,true);this._anim.onComplete.subscribe(G,this,true);this._anim.animate();this._toggleClip();}else{this._collapsing=false;this._toggleClip();this._collapsed=false;this.setStyle("zIndex",this.get("parent")._zIndex);this.setStyle("display","block");this.set("width",this._lastWidth);this.set("height",this._lastHeight);this.resize();this.set("scroll",this._lastScroll);if(this._lastScrollTop>0){this.body.scrollTop=this._lastScrollTop;}this.fireEvent("expand");}return this;},collapse:function(){if(this._collapsed){return this;}var J=this.fireEvent("beforeCollapse");if(J===false){return this;}if(!this._clip){this._createClip();}this._collapsing=true;var G=this.get("width"),H=this.get("height"),F={};this._lastWidth=G;this._lastHeight=H;this._lastScroll=this.get("scroll");this._lastScrollTop=this.body.scrollTop;this.set("scroll",false,true);this._lastLeft=parseInt(this.get("element").style.left,10);this._lastTop=parseInt(this.get("element").style.top,10);if(isNaN(this._lastTop)){this._lastTop=0;this.set("top",0);}if(isNaN(this._lastLeft)){this._lastLeft=0;this.set("left",0);}this.setStyle("zIndex",this.get("parent")._zIndex+1);var K=this.get("position");switch(K){case"top":case"bottom":this.set("height",(this.get("collapseSize")+(this._gutter.top+this._gutter.bottom)));F={top:{to:(this.get("top")-H)}};if(K=="bottom"){F.top.to=(this.get("top")+H);}break;case"left":case"right":this.set("width",(this.get("collapseSize")+(this._gutter.left+this._gutter.right)));F={left:{to:-(this._lastWidth)}};if(K=="right"){F.left={to:(this.get("left")+G)};}break;}if(this._anim){this._anim.attributes=F;var I=function(){this._collapsing=false;this._toggleClip();this.setStyle("zIndex",this.get("parent")._zIndex);this._collapsed=true;this.get("parent").resize();this._anim.onComplete.unsubscribe(I,this,true);this.fireEvent("collapse");};this._anim.onComplete.subscribe(I,this,true);this._anim.animate();}else{this._collapsing=false;this.setStyle("display","none");this._toggleClip();this.setStyle("zIndex",this.get("parent")._zIndex);this.get("parent").resize();this._collapsed=true;this.fireEvent("collapse");}return this;},close:function(){this.setStyle("display","none");this.get("parent").removeUnit(this);this.fireEvent("close");if(this._clip){this._clip.parentNode.removeChild(this._clip);this._clip=null;}return this.get("parent");},loadHandler:{success:function(F){this.body.innerHTML=F.responseText;this.resize(true);},failure:function(F){}},dataConnection:null,_loading:false,loadContent:function(){if(YAHOO.util.Connect&&this.get("dataSrc")&&!this._loading&&!this.get("dataLoaded")){this._loading=true;D.addClass(this.body,this.LOADING_CLASSNAME);this.dataConnection=YAHOO.util.Connect.asyncRequest(this.get("loadMethod"),this.get("dataSrc"),{success:function(F){this.loadHandler.success.call(this,F);this.set("dataLoaded",true);this.dataConnection=null;D.removeClass(this.body,this.LOADING_CLASSNAME);this._loading=false;this.fireEvent("load");},failure:function(F){this.loadHandler.failure.call(this,F);this.dataConnection=null;D.removeClass(this.body,this.LOADING_CLASSNAME);this._loading=false;this.fireEvent("loadError",{error:F});},scope:this,timeout:this.get("dataTimeout")});return this.dataConnection;}return false;},init:function(H,G){this._gutter={left:0,right:0,top:0,bottom:0};this._sizes={wrap:{h:0,w:0},header:{h:0,w:0},body:{h:0,w:0},footer:{h:0,w:0}};B.superclass.init.call(this,H,G);this.browser=this.get("parent").browser;var K=H;if(!E.isString(K)){K=D.generateId(K);}B._instances[K]=this;this.setStyle("position","absolute");this.addClass("yui-layout-unit");this.addClass("yui-layout-unit-"+this.get("position"));var J=this.getElementsByClassName("yui-layout-hd","div")[0];if(J){this.header=J;}var F=this.getElementsByClassName("yui-layout-bd","div")[0];
10 if(F){this.body=F;}var I=this.getElementsByClassName("yui-layout-ft","div")[0];if(I){this.footer=I;}this.on("contentChange",this.resize,this,true);this._lastScrollTop=0;this.set("animate",this.get("animate"));},initAttributes:function(F){B.superclass.initAttributes.call(this,F);this.setAttributeConfig("wrap",{value:F.wrap||null,method:function(G){if(G){var H=D.generateId(G);B._instances[H]=this;}}});this.setAttributeConfig("grids",{value:F.grids||false});this.setAttributeConfig("top",{value:F.top||0,validator:E.isNumber,method:function(G){if(!this._collapsing){this.setStyle("top",G+"px");}}});this.setAttributeConfig("left",{value:F.left||0,validator:E.isNumber,method:function(G){if(!this._collapsing){this.setStyle("left",G+"px");}}});this.setAttributeConfig("minWidth",{value:F.minWidth||false,validator:YAHOO.lang.isNumber});this.setAttributeConfig("maxWidth",{value:F.maxWidth||false,validator:YAHOO.lang.isNumber});this.setAttributeConfig("minHeight",{value:F.minHeight||false,validator:YAHOO.lang.isNumber});this.setAttributeConfig("maxHeight",{value:F.maxHeight||false,validator:YAHOO.lang.isNumber});this.setAttributeConfig("height",{value:F.height,validator:E.isNumber,method:function(G){if(!this._collapsing){if(G<0){G=0;}this.setStyle("height",G+"px");}}});this.setAttributeConfig("width",{value:F.width,validator:E.isNumber,method:function(G){if(!this._collapsing){if(G<0){G=0;}this.setStyle("width",G+"px");}}});this.setAttributeConfig("zIndex",{value:F.zIndex||false,method:function(G){this.setStyle("zIndex",G);}});this.setAttributeConfig("position",{value:F.position});this.setAttributeConfig("gutter",{value:F.gutter||0,validator:YAHOO.lang.isString,method:function(H){var G=H.split(" ");if(G.length){this._gutter.top=parseInt(G[0],10);if(G[1]){this._gutter.right=parseInt(G[1],10);}else{this._gutter.right=this._gutter.top;}if(G[2]){this._gutter.bottom=parseInt(G[2],10);}else{this._gutter.bottom=this._gutter.top;}if(G[3]){this._gutter.left=parseInt(G[3],10);}else{if(G[1]){this._gutter.left=this._gutter.right;}else{this._gutter.left=this._gutter.top;}}}}});this.setAttributeConfig("parent",{writeOnce:true,value:F.parent||false,method:function(G){if(G){G.on("resize",this.resize,this,true);}}});this.setAttributeConfig("collapseSize",{value:F.collapseSize||25,validator:YAHOO.lang.isNumber});this.setAttributeConfig("duration",{value:F.duration||0.5});this.setAttributeConfig("easing",{value:F.easing||((YAHOO.util&&YAHOO.util.Easing)?YAHOO.util.Easing.BounceIn:"false")});this.setAttributeConfig("animate",{value:((F.animate===false)?false:true),validator:function(){var G=false;if(YAHOO.util.Anim){G=true;}return G;},method:function(G){if(G){this._anim=new YAHOO.util.Anim(this.get("element"),{},this.get("duration"),this.get("easing"));}else{this._anim=false;}}});this.setAttributeConfig("header",{value:F.header||fals
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/
H A DRequestItemIterator.java213 * @return The items header object
221 * @param pHeaders The items header object
282 + " stream, content type header is "
403 * header.
447 * header.
459 * header.
460 * @param pContentDisposition The content-dispositions header value.
480 * <p> Parses the <code>header-part</code> and returns as key/value
486 * @param headerPart The <code>header-part</code> of the current
502 StringBuilder header
[all...]
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/resources/
H A DStaticResource.java92 rp.header("resource3-header", m);
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/provider/
H A DBaseProvider.java154 /* check for the __debug request header
167 List header = requestHeaders.getRequestHeader(HEADER_DEBUG);
168 return (header != null) && ("true".equals(header.get(0)));
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/servlets/
H A DCGIServlet.java191 * "HTTP_ACCEPT") are also canonical in their description of request header
227 * <b>NPH -- Non-parsed-header implementation</b>: This implementation does
253 * <li> Support for collapsing multiple header lines (per RFC 2616)
256 * <li> Ensure header handling preserves encoding
468 String header = headers.nextElement();
469 out.println("<li><b>header</b> " + htmlEntityEncoder.encode(header) + " = " +
470 htmlEntityEncoder.encode(req.getHeader(header)));
1149 String header = null;
1151 header
[all...]
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/resources/custom/
H A DLogViewerResource.java136 header("X-Text-Append-Next", uriBuilder.build()).build();
164 rp.header("X-Text-Append-Next", next);
166 rp = rp.header("Content-Encoding", "gzip");
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/
H A DCoyoteAdapter.java361 * header.
418 // At this point the Host header has been processed.
551 String header = null;
556 // Exclude TRACE from methods returned in Allow header
560 if (header == null) {
561 header = methods[i];
563 header += ", " + methods[i];
569 res.addHeader("Allow", header);
978 // Add server header
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/valves/
H A DAccessLogValve.java125 * header, the Session or something else in the ServletRequest.<br>
1007 * Return the replacement text for the specified "header/parameter".
1009 * @param header The header/parameter to get
1014 private String replace(String header, char type, Request request, argument
1025 value = hreq.getHeader(header);
1037 if (header.equals(c[i].getName())){
1045 value = hreq.getAttribute(header);
1053 value = sess.getAttribute(header);
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/
H A DSOAPMessageContextImpl.java116 public Object[] getHeaders(QName header, JAXBContext jaxbContext, boolean allRoles) { argument
/glassfish-3.1.2/admingui/core/src/main/resources/css/
H A Dcss_ns4sol.css100 .help-header-1 {color:#333;font-weight:bold;margin:0px;font-size:18pt}
101 .help-header-2 {color:#333;font-weight:bold;margin:0px;font-size:15pt}
102 .help-header-3 {color:#333;font-weight:bold;margin:0px}
103 .help-table-header-row {background-color:#CCC}
541 .table-header-row {background-color:#99C}
546 .table-header-text {color:#FFF;font-weight:bold;margin:2px 5px 2px 10px}
584 .alert-header-text {color:#000;font-weight:bold;margin:0px 0px 5px 0px}
648 .help-header-1 {color:#669;font-weight:bold;font-size:1.3em}
649 .help-table-header-row {background-color:#CCC}
658 .date-time-day-header {colo
[all...]
H A Dcss_ns4win.css100 .help-header-1 {color:#333;font-weight:bold;margin:0px;font-size:18px}
101 .help-header-2 {color:#333;font-weight:bold;margin:0px;font-size:15px}
102 .help-header-3 {color:#333;font-weight:bold;margin:0px}
103 .help-table-header-row {background-color:#CCC}
544 .table-header-row {background-color:#99C}
549 .table-header-text {color:#FFF;font-weight:bold;margin:2px 5px 2px 10px}
587 .alert-header-text {color:#000;font-weight:bold;margin:0px 0px 5px 0px}
651 .help-header-1 {color:#669;font-weight:bold;font-size:1em}
652 .help-table-header-row {background-color:#CCC}
661 .date-time-day-header {colo
[all...]
H A Dcss_ie5win.css177 .help-header-1 {color:#333;font-weight:bold;margin:8px 0px 3px;font-size:18px}
178 .help-header-2 {color:#333;font-weight:bold;margin:8px 0px 3px;font-size:15px}
179 .help-header-3 {color:#333;font-weight:bold;margin:8px 0px 3px}
180 .help-table-header-row {background-color:#CCC}
770 .table-header-row {background-color:#99C}
773 .table-header-text {color:#FFF;font-weight:bold;margin:2px 5px 2px 10px}
798 .alert-header-text {color:#000;font-weight:bold;margin:0px 0px 5px 0px}
839 .date-time-day-header {color:#000;font-weight:bold}
848 .chooser-server-header {color:#000;font-weight:bold}
H A Dcss_ie6up.css177 .help-header-1 {color:#333;font-weight:bold;margin:8px 0px 3px;font-size:18px}
178 .help-header-2 {color:#333;font-weight:bold;margin:8px 0px 3px;font-size:15px}
179 .help-header-3 {color:#333;font-weight:bold;margin:8px 0px 3px}
180 .help-table-header-row {background-color:#CCC}
770 .table-header-row {background-color:#99C}
773 .table-header-text {color:#FFF;font-weight:bold;margin:2px 5px 2px 10px}
798 .alert-header-text {color:#000;font-weight:bold;margin:0px 0px 5px 0px}
839 .date-time-day-header {color:#000;font-weight:bold}
848 .chooser-server-header {color:#000;font-weight:bold}
H A Dcss_ns6up.css177 .help-header-1 {color:#333;font-weight:bold;margin:8px 0px 3px;font-size:18px}
178 .help-header-2 {color:#333;font-weight:bold;margin:8px 0px 3px;font-size:15px}
179 .help-header-3 {color:#333;font-weight:bold;margin:8px 0px 3px}
180 .help-table-header-row {background-color:#CCC}
780 .table-header-row {background-color:#99C}
783 .table-header-text {color:#FFF;font-weight:bold;margin:2px 5px 2px 10px}
808 .alert-header-text {color:#000;font-weight:bold;margin:0px 0px 5px 0px}
849 .date-time-day-header {color:#000;font-weight:bold}
858 .chooser-server-header {color:#000;font-weight:bold}
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/comm/
H A DUnWrappedMessage.java198 int[] wsdlPartBindings; // represents whether the part is bound to 'header', 'body', or 'attachment'.
547 * Adds the header node to the header list.
553 DOMHeader header = new DOMHeader((Element)n);
554 headers.add(header);
558 * Adds the header node pointed by XMLStreamReader to the header list.
565 StreamHeader11 header = new StreamHeader11(r);
566 headers.add(header);
636 logger.log(Level.FINE, "Adding part number " + i + " to header");
[all...]
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/soap/
H A DEndpointMetaData.java185 SOAPHeader header = (SOAPHeader)extElem;
186 String part = header.getPart();

Completed in 144 milliseconds

12